Open GoogleCodeExporter opened 9 years ago
see attached patch file
Original comment by bschoeni
on 11 Apr 2012 at 11:47
Attachments:
we do have this issue . Can you please the details on how did you resolve this
issue.
Original comment by thiruthi...@gmail.com
on 12 Jul 2014 at 12:14
The fix is in Log4JLogger.java in the log method which just needs an
extra arg for the fully-qualified class name (FQCN) of the log
wrapper. This informs Log4J to continue up the stack past Log4JLogger
wrapper when looking for the file name and line.
Old:
// log the message
log(level, "[" + typeInfo + getUserInfo() + " -> " + appInfo + "] "
+ clean, throwable);
New:
// log the message
log(Log4JLogger.class.getName(), level, "[" + typeInfo +
getUserInfo() + " -> " + appInfo + "] " + clean, throwable);
Original comment by bschoeni
on 14 Jul 2014 at 7:21
Hi,
I have fixed the issue following the ideas presented in the comments on this
issue and created this pull request:
https://github.com/ESAPI/esapi-java-legacy/pull/342
Regards,
Constantino
Original comment by const.cr...@gmail.com
on 8 Dec 2014 at 6:36
Original issue reported on code.google.com by
bschoeni
on 10 Apr 2012 at 2:12