mirror of
https://github.com/outscale/zabbix-super-vision.git
synced 2024-11-14 12:25:47 +01:00
f2235d4b45
- using fastAPI - offline/online working - warning if ZABBIX API is too long - showing settings - showing last ack message - showing procedure - menu split by SU team
9 lines
224 B
Python
9 lines
224 B
Python
import logging
|
|
|
|
# Logger Configuration
|
|
stdio_handler = logging.StreamHandler()
|
|
stdio_handler.setLevel(logging.INFO)
|
|
logger = logging.getLogger("aiohttp.access")
|
|
logger.addHandler(stdio_handler)
|
|
logger.setLevel(logging.INFO)
|