feat(gateway): enhance logging and event handling in agent and Telegram translator

This commit is contained in:
Anish Sarkar 2026-05-28 00:07:37 +05:30
parent 5f9d16530d
commit 708e3a9120
4 changed files with 38 additions and 6 deletions

View file

@ -3,9 +3,14 @@
from __future__ import annotations
import asyncio
import logging
from app.gateway.runner import GatewayRunner
if __name__ == "__main__":
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s [%(name)s] %(message)s",
)
asyncio.run(GatewayRunner().run())