Make MRF rejects log as debug instead of info
ci/woodpecker/pr/woodpecker Pipeline failed Details

Signed-off-by: r3g_5z <june@terezi.dev>
This commit is contained in:
r3g_5z 2022-11-25 21:59:31 -05:00
parent e0b2095a5c
commit 580afed663
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -184,7 +184,7 @@ defmodule Pleroma.Object.Fetcher do
nil
{:reject, reason} ->
Logger.info("Rejected #{id} while fetching: #{inspect(reason)}")
Logger.debug("Rejected #{id} while fetching: #{inspect(reason)}")
nil
e ->

View File

@ -1674,7 +1674,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
{:error, e}
{:error, {:reject, reason} = e} ->
Logger.info("Rejected user #{ap_id}: #{inspect(reason)}")
Logger.debug("Rejected user #{ap_id}: #{inspect(reason)}")
{:error, e}
{:error, e} ->