summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-10-03 19:45:47 +0000
committerSanto Cariotti <santo@dcariotti.me>2022-10-03 19:45:47 +0000
commitec88959f1cb264ac9725636bd3f3c24474c0ab54 (patch)
tree2e28b0aebb034b1dcd95325d78f2debc2c0e91bf /src
parentd39a8c73776d82a115f1a680ce90152407b7cea0 (diff)
Fix: call `SENTRY` to enable it
Diffstat (limited to 'src')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 2a14629..19003f3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -43,6 +43,7 @@ async fn main() {
},
};
tracing::info!("Listening on {}", addr);
+ tracing::info!("[Sentry] Guard enabled: {}", SENTRY.0.is_enabled());
axum::Server::bind(&addr)
.serve(app.into_make_service())