Grazfather x added the comment:
That's not really what this is about. This is about setting up the listener so
that by default that setting is used.
In logging/config.py:
```python
def listen(port=DEFAULT_LOGGING_CONFIG_PORT, verify=None):
...
New submission from Grazfather x:
logging.config.FileConfig has a kwarg 'disable_existing_loggers' that defaults
to False, but when true will allow you to load a config and not disable all
other existing loggers.
logging.config.listen uses FileConfig, but has no option to pr