Skip to content

Move some logging calls down to DEBUG level. #10509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2018
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