Skip to content

Commit

Permalink
fix: invalid log statement fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
aggregat4 committed Mar 20, 2024
1 parent 6680788 commit aab786b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ func (controller *Controller) login(c echo.Context) error {
return sendInternalError(c, err, fullRedirectUri, state)
}
if user == nil {
logger.Debug("User not found with username %s", username)
logger.Debug("User not found with username")
// See https://openid.net/specs/openid-connect-core-1_0.html#AuthError
return sendOauthError(c, fullRedirectUri, "access_denied", "Invalid username or password", state)
}
Expand Down

0 comments on commit aab786b

Please sign in to comment.