12 lines
222 B
Python
12 lines
222 B
Python
"""
|
|
Package `ovdashboard_api`: Contains the API powering the
|
|
"OVDashboard" application.
|
|
|
|
This file: Sets up logging.
|
|
"""
|
|
|
|
import logging.config
|
|
|
|
from .config import LogConfig
|
|
|
|
logging.config.dictConfig(LogConfig().dict())
|