aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/object/fetcher.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/object/fetcher.ex b/lib/pleroma/object/fetcher.ex
index 6aa01606b..3c137836c 100644
--- a/lib/pleroma/object/fetcher.ex
+++ b/lib/pleroma/object/fetcher.ex
@@ -56,9 +56,9 @@ defmodule Pleroma.Object.Fetcher do
{:normalize, object = %Object{}} ->
{:ok, object}
- e ->
+ _e ->
# Only fallback when receiving a fetch/normalization error with ActivityPub
- Logger.warn("Couldn't get object via AP, trying out OStatus fetching... #{inspect(e)}")
+ Logger.info("Couldn't get object via AP, trying out OStatus fetching...")
# FIXME: OStatus Object Containment?
case OStatus.fetch_activity_from_url(id) do