refactored logging with json_logs func

This commit is contained in:
2023-11-29 16:15:48 +03:00
committed by nikili0n
parent d22f976d2f
commit d984566a88
3 changed files with 28 additions and 4 deletions
+3 -1
View File
@@ -1,6 +1,7 @@
import asyncio
import json
from loguru import logger
from playwright.async_api import async_playwright
from playwright.async_api import Playwright
from aio_pika import Message, connect, DeliveryMode
@@ -38,12 +39,13 @@ async def run(playwright: Playwright):
routing_key='hello',
)
print(f" [x] Sent '{body}'")
logger.info(f" [x] Sent '{body}'")
await page.keyboard.press("ArrowDown")
while title == await page.title():
await page.title()
async def main():
async with async_playwright() as playwright:
await run(playwright)