Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bd7218 commit a280114Copy full SHA for a280114
1 file changed
doc/api/prev_api_changes/api_changes_3.1.0.rst
@@ -531,7 +531,11 @@ The following miscellaneous API elements have been removed
531
532
import logging
533
logger = logging.getLogger('matplotlib')
534
- logger.set_level(logging.INFO)
+ logger.setLevel(logging.INFO)
535
+ # configure log handling: Either include it into your ``logging`` hierarchy,
536
+ # e.g. by configuring a root looger using ``logging.basicConfig()``,
537
+ # or add a standalone handler to the matplotlib logger:
538
+ logger.addHandler(logging.StreamHandler())
539
540
- ``__version__numpy__``
541
- ``collections.CIRCLE_AREA_FACTOR``
0 commit comments