fix: remove notification from debug log

This commit is contained in:
Richard Ramos 2022-02-15 12:05:13 -04:00
parent ece535aaf7
commit 6cfe0f1369
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}