diff --git a/app/main.py b/app/main.py index b980a5b..1d4fb47 100644 --- a/app/main.py +++ b/app/main.py @@ -67,6 +67,6 @@ async def tg_intgr_get(request: Request): ) return {"status": "success"} - except: - logger.info(request.__dict__) + except Exception as e: + logger.info(e) return {"status": "error"}