This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Grazfather x
Recipients Grazfather x, chillydev, vinay.sajip
Date 2016-07-21.22:00:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469138449.75.0.852475879662.issue26533@psf.upfronthosting.co.za>
In-reply-to
Content
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):
...
                            try:
                                fileConfig(file)
                            except Exception:
                                traceback.print_exc()
...

def fileConfig(fname, defaults=None, disable_existing_loggers=True):
...
```
History
Date User Action Args
2016-07-21 22:00:49Grazfather xsetrecipients: + Grazfather x, vinay.sajip, chillydev
2016-07-21 22:00:49Grazfather xsetmessageid: <1469138449.75.0.852475879662.issue26533@psf.upfronthosting.co.za>
2016-07-21 22:00:49Grazfather xlinkissue26533 messages
2016-07-21 22:00:49Grazfather xcreate