From 988c425150556b32cff1d341a21fcc9c69d9aaf8 Mon Sep 17 00:00:00 2001 From: Ryan Kaskel Date: Tue, 24 Jun 2025 14:48:11 +0100 Subject: [PATCH] fix: remove duplicate request logging (#678) --- backend/internal/bootstrap/router_bootstrap.go | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/internal/bootstrap/router_bootstrap.go b/backend/internal/bootstrap/router_bootstrap.go index 93a317c0..acf27d2e 100644 --- a/backend/internal/bootstrap/router_bootstrap.go +++ b/backend/internal/bootstrap/router_bootstrap.go @@ -48,7 +48,6 @@ func initRouterInternal(db *gorm.DB, svc *services) (utils.Service, error) { } r := gin.Default() - r.Use(gin.Logger()) if !common.EnvConfig.TrustProxy { _ = r.SetTrustedProxies(nil)