Remove some user session logs that we don't need

This commit is contained in:
Eli Ribble 2026-01-25 21:18:39 +00:00
parent 82081b9609
commit ab105e16e8
No known key found for this signature in database
2 changed files with 1 additions and 3 deletions

View file

@ -39,7 +39,7 @@ func postSignin(w http.ResponseWriter, r *http.Request) {
username := r.FormValue("username")
password := r.FormValue("password")
log.Info().Str("username", username).Msg("Signin")
log.Info().Str("username", username).Msg("HTML Signin")
_, err := auth.SigninUser(r, username, password)
if err != nil {