Skip to content

Commit f31d35d

Browse files
committed
FIX: ffmpeg logging level
1 parent fbcfe76 commit f31d35d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/animation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ def _args(self):
668668
'-r', str(self.fps)]
669669
# Logging is quieted because subprocess.PIPE has limited buffer size.
670670

671-
if (_log.getEffectiveLevel() < logging.DEBUG):
671+
if (_log.getEffectiveLevel() > logging.DEBUG):
672672
args += ['-loglevel', 'quiet']
673673
args += ['-i', 'pipe:'] + self.output_args
674674
return args

0 commit comments

Comments
 (0)