This commit is contained in:
Taylor Wilsdon
2026-02-10 17:00:41 -05:00
parent bc2279bc10
commit 3b75ab11fb
4 changed files with 11 additions and 7 deletions

View File

@@ -81,7 +81,7 @@ class AuthInfoMiddleware(Middleware):
auth_header = headers.get("authorization", "")
if auth_header.startswith("Bearer "):
token_str = auth_header[7:] # Remove "Bearer " prefix
logger.info(f"Found Bearer token: {token_str[:20]}...")
logger.info("Found Bearer token in request")
# For Google OAuth tokens (ya29.*), we need to verify them differently
if token_str.startswith("ya29."):