Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change the log level away from WARNING to FINE
This log message is referring to expected behavior during restarts of the Jenkins master instance.

Fixes JENKINS-46557
  • Loading branch information
R. Tyler Croy committed Sep 1, 2017
1 parent 0ffdeb4 commit 076742c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -70,7 +70,7 @@ public static EventDispatcher start(@Nonnull String clientId, @Nonnull HttpServl
EventDispatcher dispatcher = EventDispatcherFactory.getDispatcher(clientId, session);

if (dispatcher == null) {
LOGGER.log(Level.WARNING, String.format("Unknown dispatcher client Id '%s' on HTTP session '%s'. Creating a new one. " +
LOGGER.log(Level.FINE, String.format("Unknown dispatcher client Id '%s' on HTTP session '%s'. Creating a new one. " +
"Make sure you are calling 'connect' before 'listen' and that HTTP sessions are being maintained between 'connect' and 'configure' calls. " +
"SSE client reconnects will not work - probably fine if running in non-browser/test mode.", clientId, session.getId()));
dispatcher = EventDispatcherFactory.newDispatcher(clientId, session);
Expand Down Expand Up @@ -174,4 +174,4 @@ private static boolean isAsyncSupported() {
return false;
}
}
}
}

0 comments on commit 076742c

Please sign in to comment.