From 27ab55f486ed7553c90a84054ea4c9655199b408 Mon Sep 17 00:00:00 2001 From: Chidi Williams Date: Fri, 27 Jan 2023 23:32:27 +0000 Subject: [PATCH] Log exception --- buzz/transcriber.py | 1 + 1 file changed, 1 insertion(+) diff --git a/buzz/transcriber.py b/buzz/transcriber.py index 84e87265..fd076b5f 100644 --- a/buzz/transcriber.py +++ b/buzz/transcriber.py @@ -399,6 +399,7 @@ class WhisperFileTranscriber(QObject): while True: try: line = pipe.recv().strip() + logging.debug('whisper (stderr): %s', line) except EOFError: # Connection closed break