equal
deleted
inserted
replaced
|
1 # Don't change appenders names (these names are used in source code to set some properties) |
|
2 log4j.rootCategory=OFF, logfile |
|
3 log4j.logger.com.symbian.sdb=INFO, stdout |
|
4 |
|
5 # Console appender configuration |
|
6 log4j.appender.stdout=org.apache.log4j.ConsoleAppender |
|
7 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout |
|
8 log4j.appender.stdout.layout.ConversionPattern=%m%n |
|
9 |
|
10 # logfile appender configuration |
|
11 log4j.appender.logfile=org.apache.log4j.FileAppender |
|
12 log4j.appender.logfile.File=logs/sdb.log |
|
13 log4j.appender.logfile.layout=org.apache.log4j.PatternLayout |
|
14 log4j.appender.logfile.layout.ConversionPattern=%-5p [%-20.20C{1}] %-8r %4L - %m%n |
|
15 #log4j.appender.logfile.layout.ConversionPattern=%d %-5p [%t] %c{1}.%M(%L) | %m%n |
|
16 log4j.appender.logfile.append=false |
|
17 |