Raise log level of toplogy changes.

This commit is contained in:
Jon Chambers 2021-01-10 14:53:51 -05:00 committed by Jon Chambers
parent 1b53f10091
commit 22f7bb822f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ public class ConnectionEventLogger {
if (event instanceof ConnectionEvent) {
logger.debug("Connection event: {}", event);
} else if (event instanceof ClusterTopologyChangedEvent) {
logger.debug("Cluster topology changed: {}", event);
logger.info("Cluster topology changed: {}", event);
}
});
}