Skip to content

Commit

Permalink
chore(notifications): disable spammy log output
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbitfly committed Sep 10, 2024
1 parent 98f7a63 commit 4f4367f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/notification/firebase.go
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit 4f4367f

Please sign in to comment.