Skip to content

Commit

Permalink
Replace WARNING log with FINE, creates noise when using java logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jfdenise committed Sep 11, 2018
1 parent 08b3c79 commit 00e8f2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ else if (OSUtils.IS_WINDOWS) {
pty = ExecPty.current();
}
catch (IOException e) {
LOGGER.log(Level.WARNING, "Failed to get a local tty", e);
LOGGER.log(Level.FINE, "Failed to get a local tty", e);
}
if (pty != null) {
return new PosixSysTerminal(name, type, pty, nativeSignals);
Expand Down

0 comments on commit 00e8f2d

Please sign in to comment.