Skip to content

Commit 9165149

Browse files
Update lib/matplotlib/testing/__init__.py
Co-authored-by: Thomas A Caswell <tcaswell@gmail.com>
1 parent 8c8009c commit 9165149

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/testing/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ def subprocess_run_for_testing(command, env=None, timeout=60, stdout=None,
112112
_log.error(f"Subprocess error:\n{e.stderr}")
113113
raise e
114114
if proc.stdout:
115-
_log.info(f"Subprocess output:\n{proc.stdout}")
115+
_log.debug(f"Subprocess output:\n{proc.stdout}")
116116
if proc.stderr:
117-
_log.error(f"Subprocess error:\n{proc.stderr}")
117+
_log.debug(f"Subprocess error:\n{proc.stderr}")
118118
return proc
119119

120120

0 commit comments

Comments
 (0)