1
0
Fork 0

Change log level to info for connector exceptions

These errors in resolve_remote_id aren't really errors, they're
routine problems that we can expect from dealing with the outside world,
like a connection timeout, a server being down, a server being blocked,
et cetera. It's cluttering up the logs and causing unnecessary worry.
This commit is contained in:
Mouse Reeve 2022-11-17 12:35:19 -08:00
parent d40cc21460
commit b37a4322de
2 changed files with 2 additions and 2 deletions

View file

@ -271,7 +271,7 @@ def resolve_remote_id(
try:
data = get_data(remote_id)
except ConnectorException:
logger.exception("Could not connect to host for remote_id: %s", remote_id)
logger.info("Could not connect to host for remote_id: %s", remote_id)
return None
# determine the model implicitly, if not provided