Log failure to connect to node at info instead of debug (#21809)

Closes #6468
This commit is contained in:
Clinton Gormley 2016-11-26 13:18:26 +01:00 committed by GitHub
parent 5555e85619
commit c1fa80d40f
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ final class TransportClientNodesService extends AbstractComponent implements Clo
logger.trace("connecting to listed node (light) [{}]", listedNode);
transportService.connectToNodeLight(listedNode);
} catch (Exception e) {
logger.debug(
logger.info(
(Supplier<?>)
() -> new ParameterizedMessage("failed to connect to node [{}], removed from nodes list", listedNode), e);
hostFailureListener.onNodeDisconnected(listedNode, e);