From 3cc7b5835022f74fd62b4d0182b4a89fec239588 Mon Sep 17 00:00:00 2001 From: silverpill Date: Wed, 2 Nov 2022 19:23:32 +0000 Subject: [PATCH] Change log level of JSON signature error message --- src/activitypub/receiver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activitypub/receiver.rs b/src/activitypub/receiver.rs index 38c0323..83fa78b 100644 --- a/src/activitypub/receiver.rs +++ b/src/activitypub/receiver.rs @@ -195,7 +195,7 @@ pub async fn receive_activity( }, Err(AuthenticationError::NoJsonSignature) => (), // ignore Err(other_error) => { - log::error!("invalid JSON signature: {}", other_error); + log::warn!("invalid JSON signature: {}", other_error); }, };