Configure a root logger from a dictionary.
(self, config, incremental=False)
| 935 | logger.propagate = propagate |
| 936 | |
| 937 | def configure_root(self, config, incremental=False): |
| 938 | """Configure a root logger from a dictionary.""" |
| 939 | root = logging.getLogger() |
| 940 | self.common_logger_config(root, config, incremental) |
| 941 | |
| 942 | dictConfigClass = DictConfigurator |
| 943 |
no test coverage detected