Skip to content

Commit d92b0ae

Browse files
authored
[java] do not send driver logs to console by default (#12136)
1 parent 7e19893 commit d92b0ae

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

java/src/org/openqa/selenium/remote/service/DriverService.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,9 @@ protected OutputStream getLogOutput(String logProperty) {
465465
}
466466

467467
if (logLocation == null) {
468-
return System.err;
468+
LOG.info("Driver logs no longer sent to console by default; " +
469+
"https://www.selenium.dev/documentation/webdriver/drivers/service/#setting-log-output");
470+
return ByteStreams.nullOutputStream();
469471
}
470472

471473
switch (logLocation) {

0 commit comments

Comments
 (0)