Merge branch 'main' into copilot/add-debug-logging-for-mail-fetching

This commit is contained in:
Christian Krakau-Louis
2026-05-03 21:17:01 +02:00
committed by GitHub
6 changed files with 324 additions and 228 deletions
+5 -1
View File
@@ -142,7 +142,11 @@ class OAuthService:
except HTTPException:
raise
except Exception as e:
logger.error("OAuth [Google sign-in]: unexpected error: %s", e)
logger.error(
"OAuth [Google sign-in]: unexpected error: %s",
e,
exc_info=True,
)
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="OAuth authentication failed",