From 39a804425ef0afab753237629392570933886284 Mon Sep 17 00:00:00 2001 From: Roger Johansson Date: Fri, 22 Sep 2023 15:34:12 +0200 Subject: [PATCH] additional gossip logging (#2059) --- src/Proto.Cluster/Gossip/Gossip.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Proto.Cluster/Gossip/Gossip.cs b/src/Proto.Cluster/Gossip/Gossip.cs index c436694ee7..02ff9a3eee 100644 --- a/src/Proto.Cluster/Gossip/Gossip.cs +++ b/src/Proto.Cluster/Gossip/Gossip.cs @@ -94,6 +94,9 @@ public ImmutableList ReceiveState(GossipState remoteState) if (_gossipDebugLogging) { Logger.LogInformation("ReceiveState: Gossip updates {Updates}", updates); + Logger.LogInformation("ReceiveState: Old Gossip state {State}", _state); + Logger.LogInformation("ReceiveState: New Gossip state {State}", newState); + Logger.LogInformation("ReceiveState: Updated Keys {Keys}", updatedKeys); } _state = newState;