File size: 229 Bytes
b3d3593
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import logging.config
import tomllib

LOGGING_CONFIG_FILE = "logging-config.toml"


def setup_logging():
    with open("logging-config.toml", "rb") as f:
        config = tomllib.load(f)
        logging.config.dictConfig(config)