mirror of
https://github.com/clearml/clearml-server
synced 2025-05-01 18:55:58 +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"))
|