diff options
| author | tassaron | 2022-05-09 22:01:36 -0400 |
|---|---|---|
| committer | tassaron | 2022-05-09 22:01:36 -0400 |
| commit | 878e4f770ca0b168870106d142a79fdcc35f6544 (patch) | |
| tree | 4a20fbcb5330b9281854ec919091f95b5a64b1a5 /src/video_thread.py | |
| parent | c8101433615d8368555d52f92928b40cd19445e4 (diff) | |
demote error message to debug message
it's worth noting, but not important enough for 'error'
Diffstat (limited to 'src/video_thread.py')
| -rw-r--r-- | src/video_thread.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |
