mirror of
https://github.com/outscale/zabbix-super-vision.git
synced 2024-11-14 20:35:47 +01:00
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)
|