mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 02:18:08 +01:00
Reduce logging level for Lettuce connection events.
This commit is contained in:
committed by
Jon Chambers
parent
9486dcf6b0
commit
3a268aef50
@@ -18,9 +18,9 @@ public class ConnectionEventLogger {
|
||||
public static void logConnectionEvents(final ClientResources clientResources) {
|
||||
clientResources.eventBus().get().subscribe(event -> {
|
||||
if (event instanceof ConnectionEvent) {
|
||||
logger.info("Connection event: {}", event);
|
||||
logger.debug("Connection event: {}", event);
|
||||
} else if (event instanceof ClusterTopologyChangedEvent) {
|
||||
logger.info("Cluster topology changed: {}", event);
|
||||
logger.debug("Cluster topology changed: {}", event);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user