From fc1f4d03f1ad5b6b403da392f33ad85fd20959d9 Mon Sep 17 00:00:00 2001 From: sam Date: Wed, 20 Sep 2023 03:42:45 +0200 Subject: [PATCH] i forgot to change the debug setting --- backend/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.go b/backend/main.go index 3d9395b..f7f86b9 100644 --- a/backend/main.go +++ b/backend/main.go @@ -28,7 +28,7 @@ func run(c *cli.Context) error { if dsn := os.Getenv("SENTRY_DSN"); dsn != "" { sentry.Init(sentry.ClientOptions{ Dsn: dsn, - Debug: true, + Debug: os.Getenv("DEBUG") == "true", Release: server.Tag, EnableTracing: true, TracesSampleRate: 1.0,