From 26b4129261b06bda0ddaaf7f9a4237ffc384eec1 Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 18 Mar 2020 00:07:52 -0500 Subject: [PATCH] Log on wrong actor follow --- src/inbox.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/inbox.rs b/src/inbox.rs index 55f0402..d7e359d 100644 --- a/src/inbox.rs +++ b/src/inbox.rs @@ -152,6 +152,7 @@ async fn handle_follow( let my_id: XsdAnyUri = state.generate_url(UrlKind::Actor).parse()?; if !input.object.is(&my_id) { + error!("Wrong Actor, {:?}", input); return Err(MyError::WrongActor(input.object.id().to_string())); }