fix(auth): use %v for error in OIDC end-session URL log message

Aligns with the surrounding code (the discovery log uses %v) and the repo's
convention for formatting errors.
This commit is contained in:
kolaente 2026-06-19 17:23:36 +02:00
parent 37cd45d565
commit 6b4134a0ad
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ func LogoutSession(sid string) (endSessionURL string, err error) {
if buildErr != nil {
// Don't fail logout just because the logout URL could not be built;
// the session is still destroyed server-side below.
log.Errorf("Could not build OIDC end-session URL for session %s: %s", sid, buildErr)
log.Errorf("Could not build OIDC end-session URL for session %s: %v", sid, buildErr)
} else {
endSessionURL = url
}