Change log level
authorEgor Kislitsyn <egor@kislitsyn.com>
Tue, 10 Dec 2019 08:08:57 +0000 (15:08 +0700)
committerEgor Kislitsyn <egor@kislitsyn.com>
Tue, 10 Dec 2019 08:08:57 +0000 (15:08 +0700)
lib/pleroma/object/fetcher.ex
lib/pleroma/web/activity_pub/publisher.ex

index 4d71c91a80be38f5470690048495c3d4f8ba227c..a1bde90f1d77a9c12868427fecde1b524c708732 100644 (file)
@@ -154,7 +154,7 @@ defmodule Pleroma.Object.Fetcher do
   end
 
   def fetch_and_contain_remote_object_from_id(id) when is_binary(id) do
-    Logger.info("Fetching object #{id} via AP")
+    Logger.debug("Fetching object #{id} via AP")
 
     date = Pleroma.Signature.signed_date()
 
index 4ea37fc7ba8f2d5944963c8e4957dd7766041957..e834f43ad30acd796f41228dfdff2159ca011d7a 100644 (file)
@@ -47,7 +47,7 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
   * `id`: the ActivityStreams URI of the message
   """
   def publish_one(%{inbox: inbox, json: json, actor: %User{} = actor, id: id} = params) do
-    Logger.info("Federating #{id} to #{inbox}")
+    Logger.debug("Federating #{id} to #{inbox}")
     %{host: host, path: path} = URI.parse(inbox)
 
     digest = "SHA-256=" <> (:crypto.hash(:sha256, json) |> Base.encode64())