spencerahill / aospy

Python package for automated analysis and management of gridded climate data
Apache License 2.0
83 stars 12 forks source link

Improve logging when calcs submitted in parallel #317

Open spencerahill opened 5 years ago

spencerahill commented 5 years ago

Currently, logging messages from calculations run in parallel are all jumbled together, because they are all just sent to stdout immediately upon being triggered. This makes it very hard to follow along. We need to somehow separate the logging messages into separate streams and make what is sent to stdout better organized.

This I think points to a relatively straightforward solution using the standard library. But more thought is definitely needed.