in reply to Log4Perl - ANON issue
The try catch block is implemented as an anonymous subroutine which is causing your problem. You can specify the caller depth that Log4perl uses in the log entry.
local $Log::Log4perl::caller_depth = 2;
Just put this line somewhere before the call to the logger. The local should localize this change to only affect this part of your program.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Log4Perl - ANON issue
by andreas1234567 (Vicar) on Jan 30, 2004 at 13:10 UTC |