From 878e4f770ca0b168870106d142a79fdcc35f6544 Mon Sep 17 00:00:00 2001 From: tassaron Date: Mon, 9 May 2022 22:01:36 -0400 Subject: demote error message to debug message it's worth noting, but not important enough for 'error' --- src/video_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/video_thread.py b/src/video_thread.py index af2de4d..cece763 100644 --- a/src/video_thread.py +++ b/src/video_thread.py @@ -366,7 +366,7 @@ class Worker(QtCore.QObject): try: self.out_pipe.stdin.close() except (BrokenPipeError, OSError): - log.error('Broken pipe to FFmpeg!') + log.debug('Broken pipe to FFmpeg!') if self.out_pipe.stderr is not None: log.error(self.out_pipe.stderr.read()) self.out_pipe.stderr.close() -- cgit v1.2.3