diff --git a/web/routes/evotor_webhooks.py b/web/routes/evotor_webhooks.py index 5f8439e..c8d4d86 100644 --- a/web/routes/evotor_webhooks.py +++ b/web/routes/evotor_webhooks.py @@ -201,6 +201,8 @@ async def user_verify(request: Request, db: Session = Depends(get_db)): except Exception: return JSONResponse({"error": "Invalid JSON"}, status_code=400) + logger.info("user/verify body=%s", {k: v for k, v in body.items() if k != "password"}) + evotor_user_id: str = body.get("userId", "") username: str = body.get("username", "").strip() phone: str = body.get("phone", "").strip()