Configure logging using a dictionary.
(config)
| 931 | dictConfigClass = DictConfigurator |
| 932 | |
| 933 | def dictConfig(config): |
| 934 | """Configure logging using a dictionary.""" |
| 935 | dictConfigClass(config).configure() |
| 936 | |
| 937 | |
| 938 | def listen(port=DEFAULT_LOGGING_CONFIG_PORT, verify=None): |