From aca3c8b4ee7d2b0b17bc85f9e186d9342f045b09 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Fri, 23 Jan 2026 10:29:08 -0700 Subject: [PATCH] (FIX): Logging will be fully implemented later For now, I want to implement a DB logger. --- internal/app/service/auth_service.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/app/service/auth_service.go b/internal/app/service/auth_service.go index a6f04b7..8ef4455 100644 --- a/internal/app/service/auth_service.go +++ b/internal/app/service/auth_service.go @@ -58,8 +58,6 @@ func (s *AuthService) GetGoogleAuthUrl() string { oauth2.ApprovalForce, ) - logging.LogAll(s.logs, logging.LogLevelDebug, "Generated Google authentication URL: %s", url) - return url }