Skip to content

__base

Stores a base logging config dict in BASE_LOGGING_CONFIG_DICT.

This can be imported and updated to create a valid logging dictConfig.

Base logging config dict
1
2
3
4
5
6
7
8
9
BASE_LOGGING_CONFIG_DICT: dict[str, t.Any] = {
    "version": 1,
    "disable_existing_loggers": False,
    "propagate": True,
    "root": {},
    "formatters": {},
    "handlers": {},
    "loggers": {},
}