diff --git a/cmd/server/main.go b/cmd/server/main.go index e3619f2..c1bf96b 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -44,9 +44,6 @@ func main() { sessionID := rand.Text() cache[sessionID] = user - // TODO: omg remove this - log.Printf("Session id is %s", sessionID) - cookie := http.Cookie{ Name: "id", Value: sessionID, MaxAge: 3600, Secure: true, HttpOnly: true, Path: "/",