Skip to content

Commit 39a8044

Browse files
authored
additional gossip logging (#2059)
1 parent 1b0fbbb commit 39a8044

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Proto.Cluster/Gossip/Gossip.cs

+3
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ public ImmutableList<GossipUpdate> ReceiveState(GossipState remoteState)
9494
if (_gossipDebugLogging)
9595
{
9696
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);
97100
}
98101

99102
_state = newState;

0 commit comments

Comments
 (0)