Log inbox URI when broadcast() failed

This commit is contained in:
Kitaiti Makoto 2022-05-04 21:04:49 +09:00
parent 812fd3d956
commit 3eb7662aef
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ where
if r.status().is_success() {
debug!("Successfully sent activity to inbox ({})", &inbox);
} else {
warn!("Error while sending to inbox ({:?})", &r)
warn!("Error while sending to inbox ({} {:?})", &inbox, &r)
}
r.into_body().concat2()
})