8 lines
333 B
8 lines
333 B
#### Use only the log to console appender
|
|
log4j.rootCategory=info, stdout
|
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
|
|
|
# Pattern to output the caller's file name and line number.
|
|
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F%L) - %m%n
|