aboutsummaryrefslogtreecommitdiff
path: root/src/video_thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_thread.py')
-rw-r--r--src/video_thread.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_thread.py b/src/video_thread.py
index 63d06ee..5acbda4 100644
--- a/src/video_thread.py
+++ b/src/video_thread.py
@@ -67,7 +67,9 @@ class Worker(QtCore.QObject):
self.closePipe()
self.cancelExport()
self.error = True
- comp._error.emit('A render node failed critically.', str(e))
+ msg = 'A render node failed critically.'
+ log.critical(msg)
+ comp._error.emit(msg, str(e))
while not self.stopped:
audioI = self.compositeQueue.get()