Commit faa58841 authored by Self Denial's avatar Self Denial
Browse files

Use log.warning instead of log.debug

parent 81c8717d
...@@ -83,7 +83,7 @@ def transcribe( ...@@ -83,7 +83,7 @@ def transcribe(
try: try:
model = WhisperModel(**whisper_kwargs) model = WhisperModel(**whisper_kwargs)
except: except:
log.debug( log.warning(
"WhisperModel initialization failed, attempting download with local_files_only=False" "WhisperModel initialization failed, attempting download with local_files_only=False"
) )
whisper_kwargs["local_files_only"] = False whisper_kwargs["local_files_only"] = False
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment