diff --git a/helpers/template.go b/helpers/template.go index a7d6910..81e2311 100644 --- a/helpers/template.go +++ b/helpers/template.go @@ -2,7 +2,6 @@ package helpers import ( "html/template" - "log" "net/http" "synlotto-website/models" ) @@ -48,8 +47,6 @@ func TemplateContext(w http.ResponseWriter, r *http.Request) map[string]interfac currentUser = nil } - log.Printf("🧪 TemplateContext user: %#v", currentUser) - return map[string]interface{}{ "Flash": flash, "User": currentUser,