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

@ -24,7 +24,7 @@ def _lock_key(token: str) -> int:
class GatewayRunner:
async def run(self) -> None:
print("Gateway runner started. Waiting for inbound events...", flush=True)
logger.info("Gateway runner started. Waiting for inbound events.")
tasks = [asyncio.create_task(self._process_inbox_forever())]
async with async_session_maker() as session: