From a7c1d4a013bde441bf68e8aefc4b4383f7659945 Mon Sep 17 00:00:00 2001 From: Dmitry Afanasyev Date: Wed, 24 Aug 2022 00:13:35 +0300 Subject: [PATCH] reworked to docker and selenoid --- app/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/main.py b/app/main.py index e9462ff..8fd92b6 100644 --- a/app/main.py +++ b/app/main.py @@ -65,6 +65,7 @@ async def put_updates_on_queue(request: web.Request) -> web.Response: """ data = await request.json() tg_update = Update(**data) + logger.info(tg_update) queue.put_nowait(tg_update) return web.Response(status=HTTPStatus.ACCEPTED)