We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b0fbbb commit 39a8044Copy full SHA for 39a8044
src/Proto.Cluster/Gossip/Gossip.cs
@@ -94,6 +94,9 @@ public ImmutableList<GossipUpdate> ReceiveState(GossipState remoteState)
94
if (_gossipDebugLogging)
95
{
96
Logger.LogInformation("ReceiveState: Gossip updates {Updates}", updates);
97
+ Logger.LogInformation("ReceiveState: Old Gossip state {State}", _state);
98
+ Logger.LogInformation("ReceiveState: New Gossip state {State}", newState);
99
+ Logger.LogInformation("ReceiveState: Updated Keys {Keys}", updatedKeys);
100
}
101
102
_state = newState;
0 commit comments