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 | |
| parent | c8101433615d8368555d52f92928b40cd19445e4 (diff) | |
demote error message to debug message
it's worth noting, but not important enough for 'error'
| -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): | |||
| 366 | try: | 366 | try: |
| 367 | self.out_pipe.stdin.close() | 367 | self.out_pipe.stdin.close() |
| 368 | except (BrokenPipeError, OSError): | 368 | except (BrokenPipeError, OSError): |
| 369 | log.error('Broken pipe to FFmpeg!') | 369 | log.debug('Broken pipe to FFmpeg!') |
| 370 | if self.out_pipe.stderr is not None: | 370 | if self.out_pipe.stderr is not None: |
| 371 | log.error(self.out_pipe.stderr.read()) | 371 | log.error(self.out_pipe.stderr.read()) |
| 372 | self.out_pipe.stderr.close() | 372 | self.out_pipe.stderr.close() |
