Commit ef7ef61b962ab4b88d161f79c6ddec1c1ec120e5
1 parent
8814aa3a
Exists in
master
and in
63 other branches
Disabled file appender for logs (logs already write in cmd_output file)
Showing
1 changed file
with
1 additions
and
7 deletions
Show diff stats
config/kernel/log4cxx.config
1 | -log4j.rootLogger=info, stdout, F | |
1 | +log4j.rootLogger=error, stdout | |
2 | 2 | |
3 | 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender |
4 | 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout |
... | ... | @@ -6,9 +6,3 @@ log4j.appender.stdout.layout=org.apache.log4j.PatternLayout |
6 | 6 | # Pattern to output the caller's file name and line number. |
7 | 7 | log4j.appender.stdout.layout.ConversionPattern=%X{PID} %r %5p [%t] (%r ms) (%F:%L) - %m%n |
8 | 8 | |
9 | -log4j.appender.F=org.apache.log4j.FileAppender | |
10 | -log4j.appender.F.File=example.log | |
11 | -log4j.appender.F.Append=false | |
12 | - | |
13 | -log4j.appender.F.layout=org.apache.log4j.PatternLayout | |
14 | -log4j.appender.F.layout.ConversionPattern=%p %t (%r ms) %c - %m%n | |
... | ... |