diff --git a/backend/open_webui/models/auths.py b/backend/open_webui/models/auths.py index 0ea1dd412e..25fb873b95 100644 --- a/backend/open_webui/models/auths.py +++ b/backend/open_webui/models/auths.py @@ -146,11 +146,7 @@ class AuthsTable: def authenticate_user_by_api_key( self, api_key: str, db: Optional[Session] = None ) -> Optional[UserModel]: - log.info( - f"authenticate_user_by_api_key: ...{api_key[-4:]}" - if api_key - else "authenticate_user_by_api_key: " - ) + log.info(f"authenticate_user_by_api_key") # if no api_key, return None if not api_key: return None