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;