Remove logging of session token

This commit is contained in:
Maximilian Friedersdorff 2025-07-30 09:35:31 +01:00
parent 17dd20478d
commit 3c792decd6

View file

@ -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: "/",