diff --git a/controllers/auth.go b/controllers/auth.go index 76b7e8a..167e37e 100644 --- a/controllers/auth.go +++ b/controllers/auth.go @@ -64,7 +64,8 @@ func Register(c *gin.Context) { c.JSON(http.StatusBadRequest, gin.H{"Error hashing password": err.Error()}) return } else { - log.Printf("Register generated hashed password value '%s' from '%s'\n", string(hashedPassword), input.Password) + //log.Printf("Register generated hashed password value '%s' from '%s'\n", string(hashedPassword), input.Password) + log.Printf("Register generated hashed password value '%s'\n", string(hashedPassword)) } u.Password = string(hashedPassword)