Patrick Günther

Results 3 comments of Patrick Günther

can confirm using proplot=0.9.5.post301 and matplotlib=3.5.2

As far as I understand the logging library, this should not make a difference. Just using `logging.info()` and similar calls (instead of using a particular logger) should just default to...

Okay the behavior of the logging module is apparently even more unexpected (at least to me): > The functions [debug()](https://docs.python.org/3/library/logging.html#logging.debug), [info()](https://docs.python.org/3/library/logging.html#logging.info), [warning()](https://docs.python.org/3/library/logging.html#logging.warning), [error()](https://docs.python.org/3/library/logging.html#logging.error) and [critical()](https://docs.python.org/3/library/logging.html#logging.critical) will call [basicConfig()](https://docs.python.org/3/library/logging.html#logging.basicConfig) automatically if...