Reduce sentry debug messages in the console log

It's distracting and not useful.
This commit is contained in:
Eli Ribble 2026-01-29 22:28:12 +00:00
parent ef5d8168f0
commit 9047fbb3ee
No known key found for this signature in database

View file

@ -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,