Re: How to use Python's built-in Logging with Asyncio (Permission Error)

2018-10-08 Thread Ian Kelly
I'm spit-balling here, but I suspect the problem is that TimedRotatingFileHandler was probably not designed to have multiple instances of it in different processes all trying to rotate the same file. Yet that's the situation you have since each subprocess in your process pool creates its own handle

How to use Python's built-in Logging with Asyncio (Permission Error)

2018-10-08 Thread liamhanninen
>From the logging docs I found out there was another avenue (comp.lang.python) >to ask questions about it. I already posted to stackoverflow but if anyone >could help out here or via stackoverflow I would greatly appreciate it. Here >is the link to my question: https://stackoverflow.com/questio