From c11068c7390e1082357bfcd5dc453be6c0daa2b8 Mon Sep 17 00:00:00 2001 From: CKY- Date: Thu, 1 Aug 2024 11:15:37 -0600 Subject: [PATCH] Fix: notification error log spam --- src/backend/notifications/notification-manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/notifications/notification-manager.ts b/src/backend/notifications/notification-manager.ts index 13ad1703e..cb28ec4f5 100644 --- a/src/backend/notifications/notification-manager.ts +++ b/src/backend/notifications/notification-manager.ts @@ -178,7 +178,7 @@ class NotificationManager { this.setKnownExternalNotifications(newKnownExtNotis); } catch (error) { - logger.error("Error loading external notifications", error); + logger.error("Error loading external notifications", error.message); } }