Skip to content

Commit

Permalink
Update logging (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jun 22, 2023
1 parent bdff983 commit 0a8c652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_stt_http_server/gradio_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def bind_gradio_service(app, stt_engine: ModelContainer,
LOG.debug(languages)

if default_lang not in languages:
LOG.warning(f"{default_lang} not in languages, trying ISO 639-1 code")
LOG.info(f"{default_lang} not in languages, trying ISO 639-1 code")
default_lang = default_lang.split('-')[0]
if default_lang not in languages:
LOG.warning(f"{default_lang} not in languages, choosing first lang")
Expand Down

0 comments on commit 0a8c652

Please sign in to comment.