mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-04 20:05:16 +02:00
feat(gateway): enhance logging and event handling in agent and Telegram translator
This commit is contained in:
parent
5f9d16530d
commit
708e3a9120
4 changed files with 38 additions and 6 deletions
|
|
@ -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())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue