Configure logging using a dictionary.
(config)
| 942 | dictConfigClass = DictConfigurator |
| 943 | |
| 944 | def dictConfig(config): |
| 945 | """Configure logging using a dictionary.""" |
| 946 | dictConfigClass(config).configure() |
| 947 | |
| 948 | |
| 949 | def listen(port=DEFAULT_LOGGING_CONFIG_PORT, verify=None): |