ovdashboard/api/ovdashboard_api/__init__.py

13 lines
222 B
Python
Raw Normal View History

2022-09-05 12:54:02 +00:00
"""
2022-09-05 12:58:00 +00:00
Package `ovdashboard_api`: Contains the API powering the
2022-09-05 12:54:02 +00:00
"OVDashboard" application.
This file: Sets up logging.
"""
2022-09-04 23:25:40 +00:00
import logging.config
from .config import LogConfig
logging.config.dictConfig(LogConfig().dict())