gnodet commented on code in PR #2137: URL: https://github.com/apache/maven/pull/2137#discussion_r1979082223
########## impl/maven-logging/src/main/java/org/apache/maven/slf4j/SimpleLoggerConfiguration.java: ########## @@ -231,7 +231,7 @@ private static OutputChoice computeOutputChoice(String logFile, boolean cacheOut return new OutputChoice(cacheOutputStream ? OutputChoiceType.CACHED_SYS_OUT : OutputChoiceType.SYS_OUT); } else { try { - FileOutputStream fos = new FileOutputStream(logFile); + FileOutputStream fos = new FileOutputStream(logFile, true); Review Comment: > Why? It's a log, the point is to get information, not to loose it. If you don't need the log, just remove it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org