chore: do not log UnknownSpeakerError

This commit is contained in:
mco-system 2023-04-21 23:03:27 +11:00
parent 9050304a30
commit db7fcbfc3c
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def get_speaker_biography(name):
logging.info(speaker_info)
return speaker_info["results"][0]["biography"].strip()
except Exception as err:
logging.error(f"UnknownSpeakerError: {name}")
logging.debug(f"UnknownSpeakerError: {name}")
return None
# ------------------------------------------------------------------------------