mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 02:46:53 +00:00
9 lines
188 B
Python
9 lines
188 B
Python
import logging.config
|
|
from pathlib import Path
|
|
|
|
from .basic import BasicConfig
|
|
|
|
config = BasicConfig(Path(__file__).with_name("default"))
|
|
|
|
logging.config.dictConfig(config.get("logging"))
|