Skip to content

Commit

Permalink
creating non-appendable FileHandler causes issues on Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
ikuraj committed Feb 23, 2013
1 parent 50fb94e commit 185b6f2
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -26,7 +26,9 @@ object LogManager extends HasLogger {
eclipseLog.info("InSynth library logger configured to file path: " + inSynthLibraryLoggerFilePath);

// create a file handler with appropriate path (no appending)
val inSynthHandler = new FileHandler(inSynthLibraryLoggerFilePath, LogFileMaxSize, NumberOfLogFiles, true);
val inSynthHandler = new FileHandler(inSynthLibraryLoggerFilePath, false)
// this causes issues on jenkins
//val inSynthHandler = new FileHandler(inSynthLibraryLoggerFilePath, LogFileMaxSize, NumberOfLogFiles, true);

inSynthHandler.setLevel(Level.INFO);
// set simple text formatter
Expand Down

0 comments on commit 185b6f2

Please sign in to comment.