From cf501e5c8b6ab5f20430acb7b2ca9d8869c36451 Mon Sep 17 00:00:00 2001 From: Andrey Bocharnikov Date: Tue, 15 Oct 2024 15:14:33 +0400 Subject: [PATCH] fix_: add logs --- rpc/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpc/client.go b/rpc/client.go index da993ae2a..a4b84770b 100644 --- a/rpc/client.go +++ b/rpc/client.go @@ -203,6 +203,8 @@ func (c *Client) monitorHealth(ctx context.Context, statusCh chan struct{}) { if c.walletFeed == nil { return } + // FIXME: remove these excessive logs in future release (2.31+) + c.log.Debug("Sending blockchain health status event", "status", string(encodedMessage)) c.walletFeed.Send(walletevent.Event{ Type: EventBlockchainHealthChanged, Message: string(encodedMessage),