Disable sentry debug for now
It's littering my log output
This commit is contained in:
parent
034115a515
commit
5af93abbb9
1 changed files with 1 additions and 1 deletions
2
main.go
2
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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue