Move ActivityExpiration creation from CommonApi.post/2 to ActivityPub.insert/4
[akkoma] / lib / pleroma / web / activity_pub / mrf / drop_policy.ex
index dcb640b122b3d56e5608f2338821fc4cfc70d96d..4a57099748061a8d6ef0c095cf060d06264b6f3b 100644 (file)
@@ -9,10 +9,10 @@ defmodule Pleroma.Web.ActivityPub.MRF.DropPolicy do
 
   @impl true
   def filter(object) do
-    Logger.info("REJECTING #{inspect(object)}")
+    Logger.debug("REJECTING #{inspect(object)}")
     {:reject, object}
   end
 
   @impl true
-  def describe(), do: {:ok, %{}}
+  def describe, do: {:ok, %{}}
 end