From 4f4367f9eff5fd24053436a29b38c697198e6f38 Mon Sep 17 00:00:00 2001 From: peter <1674920+peterbitfly@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:41:30 +0000 Subject: [PATCH] chore(notifications): disable spammy log output --- backend/pkg/notification/firebase.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pkg/notification/firebase.go b/backend/pkg/notification/firebase.go index cd1788da5..44551b12c 100644 --- a/backend/pkg/notification/firebase.go +++ b/backend/pkg/notification/firebase.go @@ -80,7 +80,7 @@ func SendPushBatch(messages []*messaging.Message, dryRun bool) error { newMessages := make([]*messaging.Message, 0, result.FailureCount) if result.FailureCount > 0 { for i, response := range result.Responses { - log.Info(response) + //log.Info(response) if isRelevantError(response) { log.Infof("retrying message %d", i) newMessages = append(newMessages, currentMessages[i])