Change log level of JSON signature error message

This commit is contained in:
silverpill 2022-11-02 19:23:32 +00:00
parent 7f9b2a8768
commit 3cc7b58350

View file

@ -195,7 +195,7 @@ pub async fn receive_activity(
}, },
Err(AuthenticationError::NoJsonSignature) => (), // ignore Err(AuthenticationError::NoJsonSignature) => (), // ignore
Err(other_error) => { Err(other_error) => {
log::error!("invalid JSON signature: {}", other_error); log::warn!("invalid JSON signature: {}", other_error);
}, },
}; };