A demonstration project showcasing multiprocessing with centralized logging to both stdout and files. python-logging/ ├── src/ │ ├── __init__.py │ ├── logging_config.py # Centralized logging ...
This is because the cache is being written to concurrently and we have not designed that cache to be thread safe. Having a global cache with settings in #214 or #192 is also compounding the issue.