remove some logging containing hashes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-16 17:26:04 +11:00
parent 092fe32baf
commit 5f63ee235b
2 changed files with 6 additions and 4 deletions

View File

@@ -210,7 +210,8 @@ func Login(c *gin.Context) {
c.JSON(http.StatusUnauthorized, gin.H{"error": "username or password is incorrect."})
return
} else {
log.Printf("Login verified, returning token '%s'\n", token)
//log.Printf("Login verified, returning token '%s'\n", token)
log.Printf("Login verified, returning token\n")
}
c.JSON(http.StatusOK, gin.H{"access_token": token})