chore: Update logging format in handleAdminDiscordLink function

This commit is contained in:
Frederico Santos 2024-09-01 03:53:41 +01:00
parent 536568180e
commit 0b90619cdb

View File

@ -690,7 +690,6 @@ func handleAdminDiscordLink(w http.ResponseWriter, r *http.Request) {
return
}
log.Printf("%s added discord id %s to username %s", userDiscordId, r.Form.Get("discordId"), r.Form.Get("username"))
log.Printf("%s: %s added discord id %s to username %s", r.URL.Path, userDiscordId, r.Form.Get("discordId"), r.Form.Get("username"))
w.WriteHeader(http.StatusOK)
}