From 5af93abbb9e0a6af75cd46f89db7dda746117610 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 9 Mar 2026 19:09:07 +0000 Subject: [PATCH] Disable sentry debug for now It's littering my log output --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a942203c..3ee6df67 100644 --- a/main.go +++ b/main.go @@ -48,7 +48,7 @@ func main() { } log.Info().Str("environment", config.Environment).Bool("is-prod", config.IsProductionEnvironment()).Msg("Starting") err = sentry.Init(sentry.ClientOptions{ - Debug: !config.IsProductionEnvironment(), + Debug: false, //!config.IsProductionEnvironment(), Dsn: config.SentryDSN, EnableTracing: true, SendDefaultPII: true,