From aca8e1e065d13f4a759f7ec387ccd904bb32afd2 Mon Sep 17 00:00:00 2001 From: Mikhail Iudin Date: Tue, 10 Dec 2024 13:45:18 +0100 Subject: [PATCH] GO-4580 Cleanup graylog --- commonspace/headsync/synclogger.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/commonspace/headsync/synclogger.go b/commonspace/headsync/synclogger.go index 1c13ec62..0553fae4 100644 --- a/commonspace/headsync/synclogger.go +++ b/commonspace/headsync/synclogger.go @@ -4,7 +4,6 @@ import ( "time" "github.com/anyproto/any-sync/app/logger" - "go.uber.org/zap" ) type syncLogger struct { @@ -32,10 +31,4 @@ func (s syncLogger) logSyncDone(peerId string, newIds, changedIds, removedIds, d } } s.lastLogged[peerId] = now - s.Info("sync done:", zap.Int("newIds", newIds), - zap.Int("changedIds", changedIds), - zap.Int("removedIds", removedIds), - zap.Int("already deleted ids", deltedIds), - zap.String("peerId", peerId), - ) }