From 6cfe0f136960b792feec8ceb9cde1066e9568b71 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Tue, 15 Feb 2022 12:05:13 -0400 Subject: [PATCH] fix: remove notification from debug log --- services/local-notifications/core.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/local-notifications/core.go b/services/local-notifications/core.go index 8c77836df..c4d722250 100644 --- a/services/local-notifications/core.go +++ b/services/local-notifications/core.go @@ -153,7 +153,7 @@ func PushMessages(ns []*Notification) { } func pushMessage(notification *Notification) { - log.Debug("Pushing a new push notification", "notification", notification) + log.Debug("Pushing a new push notification") signal.SendLocalNotifications(notification) }