Starting impl Sentry and tracing #3

Merged
qpismont merged 6 commits from tracing into main 2026-06-10 20:27:26 +02:00
Showing only changes of commit 71ebfdd276 - Show all commits
+1 -5
View File
1
@@ -80,11 +80,7 @@ impl Bot {
// When all webhook tasks have completed, we can safely exit // When all webhook tasks have completed, we can safely exit
// properly before returning // properly before returning
while let Some(res) = tasks.join_next().await { tasks.join_all().await;
if let Err(e) = res {
error!("Task panicked: {e}");
}
}
info!("Bot shutting down, channel closed"); info!("Bot shutting down, channel closed");
Ok(()) Ok(())