diff --git a/services/auth.py b/services/auth.py index 5eaf3977..8580ada6 100644 --- a/services/auth.py +++ b/services/auth.py @@ -34,7 +34,9 @@ async def request_data(gql, headers=None): return data except Exception as e: # Handling and logging exceptions during authentication check + import traceback logger.error(f"request_data error: {e}") + logger.error(traceback.format_exc()) return None