Skip to content

Commit 20152f3

Browse files
jaredstehlergnodet
authored andcommitted
use platform-specific EOL
1 parent 28bffc8 commit 20152f3

File tree

1 file changed

+2
-2
lines changed
  • plexus-compilers/plexus-compiler-javac/src/main/java/org/codehaus/plexus/compiler/javac

1 file changed

+2
-2
lines changed

plexus-compilers/plexus-compiler-javac/src/main/java/org/codehaus/plexus/compiler/javac/JavacCompiler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ protected CompilerResult compileOutOfProcess(CompilerConfiguration config, Strin
564564
returnCode = CommandLineUtils.executeCommandLine(cli, out, out);
565565

566566
if (log.isDebugEnabled()) {
567-
log.debug("Compiler output:\n{}", out.getOutput());
567+
log.debug("Compiler output:{}{}", EOL, out.getOutput());
568568
}
569569

570570
messages = parseModernStream(returnCode, new BufferedReader(new StringReader(out.getOutput())));
@@ -622,7 +622,7 @@ private CompilerResult compileInProcess0(Class<?> javacClass, String[] args) thr
622622
ok = (Integer) compile.invoke(null, new Object[] {args, new PrintWriter(out)});
623623

624624
if (log.isDebugEnabled()) {
625-
log.debug("Compiler output:\n{}", out.toString());
625+
log.debug("Compiler output:{}{}", EOL, out.toString());
626626
}
627627

628628
messages = parseModernStream(ok, new BufferedReader(new StringReader(out.toString())));

0 commit comments

Comments
 (0)