From 9047fbb3ee6ae0e3dbb9ada4c07c8827a28559cd Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 29 Jan 2026 22:28:12 +0000 Subject: [PATCH] Reduce sentry debug messages in the console log It's distracting and not useful. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 5a6fe7d0..8454652a 100644 --- a/main.go +++ b/main.go @@ -38,7 +38,7 @@ func main() { log.Info().Msg("Starting...") err = sentry.Init(sentry.ClientOptions{ - Debug: !config.IsProductionEnvironment(), + Debug: false, //!config.IsProductionEnvironment(), Dsn: config.SentryDSN, EnableTracing: true, SendDefaultPII: true,