From cfe10fa87487283b922d815313df24b7fcf30a1a Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Mon, 9 Sep 2024 10:19:03 +1000 Subject: [PATCH] update error message --- bookwyrm/activitypub/base_activity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/activitypub/base_activity.py b/bookwyrm/activitypub/base_activity.py index 9f1afda592..8ba8c6e1a2 100644 --- a/bookwyrm/activitypub/base_activity.py +++ b/bookwyrm/activitypub/base_activity.py @@ -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