Unanswered
If you use `matplotlib` and get several `DEBUG` messages, use can suppress these by:
```import logging
#remove DEBUG warnings from matplotlib
logging.getLogger('matplotlib').setLevel(logging.WARNING)```
If you use matplotlib
and get several DEBUG
messages, use can suppress these by:import logging #remove DEBUG warnings from matplotlib logging.getLogger('matplotlib').setLevel(logging.WARNING)
976 Views
0
Answers
3 years ago
one year ago
Tags