From a800ee58a2123088c2fea57b310bf9df36a4b3cd Mon Sep 17 00:00:00 2001 From: Chidi Williams Date: Fri, 27 Jan 2023 23:31:34 +0000 Subject: [PATCH] Log exception --- buzz/transcriber.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buzz/transcriber.py b/buzz/transcriber.py index 3b272c72..84e87265 100644 --- a/buzz/transcriber.py +++ b/buzz/transcriber.py @@ -424,6 +424,8 @@ class WhisperFileTranscriber(QObject): def transcribe_whisper(stderr_conn: Connection, task: FileTranscriptionTask): try: + logging.debug('in transcribe_whisper') + raise Exception('hello') with pipe_stderr(stderr_conn): if task.transcription_options.model.model_type == ModelType.HUGGING_FACE: model = transformers_whisper.load_model(task.model_path)