Skip to content

Commit 6fd7be0

Browse files
authored
Use debug level for debugging messages.
1 parent 3ba79fb commit 6fd7be0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/font_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ def __init__(self, size=None, weight='normal'):
951951
paths.extend(ttfpath.split(':'))
952952
else:
953953
paths.append(ttfpath)
954-
_log.info('font search path %s', str(paths))
954+
_log.debug('font search path %s', str(paths))
955955
# Load TrueType fonts and create font dictionary.
956956

957957
self.ttffiles = findSystemFonts(paths) + findSystemFonts()
@@ -1327,7 +1327,7 @@ def _rebuild():
13271327
if _fmcache:
13281328
with cbook._lock_path(_fmcache):
13291329
json_dump(fontManager, _fmcache)
1330-
_log.info("generated new fontManager")
1330+
_log.debug("generated new fontManager")
13311331

13321332
if _fmcache:
13331333
try:

0 commit comments

Comments
 (0)