Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit c69fbfc

Browse files
committed
fix: pick_auth exception
1 parent dc92af0 commit c69fbfc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/oidcop/oauth2/authorization.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,8 +435,8 @@ def pick_authn_method(self, request, redirect_uri, acr=None, **kwargs):
435435
else:
436436
try:
437437
res = pick_auth(_context, request)
438-
except Exception as e:
439-
logger.debug(
438+
except Exception as exc:
439+
logger.exception(
440440
f"An error occurred while picking the authN broker: {exc}"
441441
)
442442
if res:

0 commit comments

Comments
 (0)