Configure a root logger from a dictionary.
(self, config, incremental=False)
| 924 | logger.propagate = propagate |
| 925 | |
| 926 | def configure_root(self, config, incremental=False): |
| 927 | """Configure a root logger from a dictionary.""" |
| 928 | root = logging.getLogger() |
| 929 | self.common_logger_config(root, config, incremental) |
| 930 | |
| 931 | dictConfigClass = DictConfigurator |
| 932 |
no test coverage detected