diff --git a/main.py b/main.py index 0e316d39..229a5514 100644 --- a/main.py +++ b/main.py @@ -72,6 +72,9 @@ class WebhookEndpoint(HTTPEndpoint): await create_author(user_id, slug) return JSONResponse({"status": "success"}) except Exception as e: + import traceback + + traceback.print_exc() return JSONResponse({"status": "error", "message": str(e)}, status_code=500)