diff --git a/server/utils/cookie.go b/server/utils/cookie.go index bd8663c..55053cb 100644 --- a/server/utils/cookie.go +++ b/server/utils/cookie.go @@ -1,8 +1,6 @@ package utils import ( - "log" - "github.com/gin-gonic/gin" "github.com/yauthdev/yauth/server/constants" ) @@ -15,8 +13,6 @@ func SetCookie(gc *gin.Context, token string) { secure = false } host := GetFrontendHost() - log.Println("-> is cookie secure", secure) - log.Println("-> host:", host) gc.SetCookie(constants.COOKIE_NAME, token, 3600, "/", host, secure, httpOnly) }