Skip to content

Commit 116eb7f

Browse files
committed
refac
1 parent 65f5584 commit 116eb7f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

backend/open_webui/utils/oauth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1922,10 +1922,10 @@ async def handle_backchannel_logout(self, request, db=None):
19221922
users_to_logout.append(user)
19231923

19241924
if not users_to_logout and sid:
1925-
log.info(f'Back-channel logout: no user found by sub, sid-based lookup not yet supported (sid={sid})')
1925+
log.debug(f'Back-channel logout: no user found by sub, sid-based lookup not yet supported (sid={sid})')
19261926

19271927
if not users_to_logout:
1928-
log.info(f'Back-channel logout: no matching user for provider={matched_provider}, sub={sub}, sid={sid}')
1928+
log.debug(f'Back-channel logout: no matching user for provider={matched_provider}, sub={sub}, sid={sid}')
19291929
return JSONResponse(status_code=200, content={})
19301930

19311931
# 9. Revoke tokens and delete sessions

0 commit comments

Comments
 (0)