fix: log verbosity auto/logout to not expose names

This commit is contained in:
2026-02-15 16:10:14 +01:00
parent 1d7b563a6d
commit 61ce5aab3a

View File

@@ -35,7 +35,7 @@ func autoLogout(w http.ResponseWriter) {
fmt.Printf("Error logging out user %v\n", err)
} else {
loggedOutUsers = append(loggedOutUsers, user)
log.Printf("Automaticaly logged out user %s, %s ", user.Name, user.Vorname)
log.Printf("Automaticaly logged out user %d ", user.PersonalNummer)
}
}