Include inbox URL in deliverer log message

This commit is contained in:
silverpill 2021-11-11 23:28:41 +00:00
parent a8ae3b6c81
commit 3fde882e1d

View file

@ -34,7 +34,7 @@ async fn send_activity(
activity_json: &str,
inbox_url: &str,
) -> Result<(), DelivererError> {
log::info!("sending activity: {}", activity_json);
log::info!("sending activity to {}: {}", inbox_url, activity_json);
let headers = create_http_signature(
inbox_url,
activity_json,