auth-request-data-log
All checks were successful
Deploy on push / deploy (push) Successful in 22s

This commit is contained in:
Untone 2024-04-22 12:48:57 +03:00
parent b7d82d9cc5
commit 8e130027f0

View File

@ -34,7 +34,9 @@ async def request_data(gql, headers=None):
return data return data
except Exception as e: except Exception as e:
# Handling and logging exceptions during authentication check # Handling and logging exceptions during authentication check
import traceback
logger.error(f"request_data error: {e}") logger.error(f"request_data error: {e}")
logger.error(traceback.format_exc())
return None return None