change logging level, nodes FD will detect it as well

This commit is contained in:
kimchy 2010-07-21 16:30:40 +03:00
parent 48d33ec70a
commit 8d45901a8a
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class PublishClusterStateAction extends AbstractComponent {
}
transportService.sendRequest(node, PublishClusterStateRequestHandler.ACTION, new PublishClusterStateRequest(clusterState), new VoidTransportResponseHandler(false) {
@Override public void handleException(RemoteTransportException exp) {
logger.warn("failed to send cluster state to [{}], should be detected as failed soon...", exp, node);
logger.debug("failed to send cluster state to [{}], should be detected as failed soon...", exp, node);
}
});
}