Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def do_nothing(*args, **kwargs):
draw_if_interactive = getattr(backend_mod, 'draw_if_interactive',
do_nothing)

_log.info('backend %s version %s' % (name, backend_version))
_log.debug('backend %s version %s', name, backend_version)

# need to keep a global reference to the backend for compatibility
# reasons. See https://github.com/matplotlib/matplotlib/issues/6092
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/font_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ def _rebuild():
_rebuild()
else:
fontManager.default_size = None
_log.info("Using fontManager instance from %s", _fmcache)
_log.debug("Using fontManager instance from %s", _fmcache)
except cbook.Locked.TimeoutError:
raise
except:
Expand Down