We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1afca03 + 7145055 commit 4426b1aCopy full SHA for 4426b1a
tux/bot.py
@@ -205,8 +205,10 @@ async def on_disconnect(self) -> None:
205
if sentry_sdk.is_initialized():
206
with sentry_sdk.push_scope() as scope:
207
scope.set_tag("event_type", "disconnect")
208
- scope.set_level("warning")
209
- sentry_sdk.capture_message("Bot disconnected from Discord")
+ scope.set_level("info")
+ sentry_sdk.capture_message(
210
+ "Bot disconnected from Discord, this happens sometimes and is fine as long as it's not happening too often",
211
+ )
212
213
# --- Sentry Transaction Tracking ---
214
0 commit comments