in src/main/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java [75:88]
private void log( final Level level, final String msg, final Throwable ex ) {
if( getLogger().isLoggable(level) ) {
final LogRecord record = new LogRecord(level, msg);
if( !classAndMethodFound ) {
getClassAndMethod();
}
record.setSourceClassName(sourceClassName);
record.setSourceMethodName(sourceMethodName);
if( ex != null ) {
record.setThrown(ex);
}
getLogger().log(record);
}
}