vlsi commented on code in PR #724: URL: https://github.com/apache/jmeter/pull/724#discussion_r944131847
########## src/core/src/main/java/org/apache/jmeter/engine/DistributedRunner.java: ########## @@ -262,21 +262,21 @@ private void println(String s) { private void errln(String s) { log.error(s); - stdErr.println(s); + stderr.println(s); } private void errln(String s, Exception e) { log.error(s, e); - stdErr.println(s + ": "); - e.printStackTrace(stdErr); // NOSONAR + stderr.println(s + ": "); + e.printStackTrace(stderr); // NOSONAR } public void setStdout(PrintStream stdout) { this.stdout = stdout; } - public void setStdErr(PrintStream stdErr) { - this.stdErr = stdErr; + public void setStderr(PrintStream stderr) { Review Comment: This looks like changing the public API. Would you please revert stdErr change? -- 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: dev-unsubscr...@jmeter.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org