From 07641bf38f36c411133254262a202380bae5a5ff Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Sun, 28 Jul 2024 22:11:24 +0100 Subject: [PATCH] fix_: remove personal information from logs (#5608) --- protocol/messenger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/messenger.go b/protocol/messenger.go index cd38de92e..9b6a22cba 100644 --- a/protocol/messenger.go +++ b/protocol/messenger.go @@ -27,6 +27,7 @@ import ( "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/p2p" + "github.com/status-im/status-go/account" "github.com/status-im/status-go/appmetrics" utils "github.com/status-im/status-go/common" @@ -2552,7 +2553,6 @@ func (m *Messenger) sendChatMessage(ctx context.Context, message *common.Message m.logger.Debug("inside sendChatMessage", zap.String("id", message.ID), - zap.String("text", message.Text), zap.String("from", message.From), zap.String("displayName", message.DisplayName), zap.String("ChatId", message.ChatId),