Skip to content

Commit

Permalink
update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
hughrun committed Sep 9, 2024
1 parent 9c89e0f commit cfe10fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bookwyrm/activitypub/base_activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def resolve_remote_id(
logger.info("Could not connect to host for remote_id: %s", remote_id)
return None
except requests.HTTPError as e:
logger.info("Could not connect to host for remote_id: %s", remote_id)
logger.exception("HTTP error - remote_id: %s - error: %s", remote_id, e)
return None
# determine the model implicitly, if not provided
# or if it's a model with subclasses like Status, check again
Expand Down

0 comments on commit cfe10fa

Please sign in to comment.