Skip to content

Commit f57a23f

Browse files
fix(sentry): change log lever for bot disconnection to info
1 parent 1afca03 commit f57a23f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tux/bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ async def on_disconnect(self) -> None:
205205
if sentry_sdk.is_initialized():
206206
with sentry_sdk.push_scope() as scope:
207207
scope.set_tag("event_type", "disconnect")
208-
scope.set_level("warning")
208+
scope.set_level("info")
209209
sentry_sdk.capture_message("Bot disconnected from Discord")
210210

211211
# --- Sentry Transaction Tracking ---

0 commit comments

Comments
 (0)