Skip to content

Commit

Permalink
Increase size of logs to 5x 2MB per node, instead of 5x 256kB.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnocandel committed Sep 19, 2014
1 parent cc25d8d commit 066a935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/water/util/Log.java
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ private static org.apache.log4j.Logger createLog4jLogger(String logDirParent) {
p.setProperty("log4j.rootLogger", "INFO, R");
p.setProperty("log4j.appender.R", "org.apache.log4j.RollingFileAppender");
p.setProperty("log4j.appender.R.File", logPathFileName);
p.setProperty("log4j.appender.R.MaxFileSize", "256KB");
p.setProperty("log4j.appender.R.MaxFileSize", "2MB");
p.setProperty("log4j.appender.R.MaxBackupIndex", "5");
p.setProperty("log4j.appender.R.layout", "org.apache.log4j.PatternLayout");

Expand Down

0 comments on commit 066a935

Please sign in to comment.