diff options
author | Eric Bailey <git@esb.lol> | 2024-01-16 17:48:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 15:48:35 -0800 |
commit | 9cbd3c0937d22e8dccbd9c086d3a3a24dbd27b3a (patch) | |
tree | a526e4d02c4938de9b01be82b18c0089799a8afb /src/state/queries/notifications/unread.tsx | |
parent | 64f7800bed3ac72f1742f96e94e72334fcb65283 (diff) | |
download | voidsky-9cbd3c0937d22e8dccbd9c086d3a3a24dbd27b3a.tar.zst |
Reduce some Sentry logs (#2549)
* Reduce some Sentry logs * Update tests
Diffstat (limited to 'src/state/queries/notifications/unread.tsx')
-rw-r--r-- | src/state/queries/notifications/unread.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/queries/notifications/unread.tsx b/src/state/queries/notifications/unread.tsx index 49bb5a29d..a96b56225 100644 --- a/src/state/queries/notifications/unread.tsx +++ b/src/state/queries/notifications/unread.tsx @@ -167,7 +167,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { } broadcast.postMessage({event: unreadCountStr}) } catch (e) { - logger.error('Failed to check unread notifications', {error: e}) + logger.warn('Failed to check unread notifications', {error: e}) } }, |