Include inbox URL in deliverer log message
This commit is contained in:
parent
a8ae3b6c81
commit
3fde882e1d
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ async fn send_activity(
|
||||||
activity_json: &str,
|
activity_json: &str,
|
||||||
inbox_url: &str,
|
inbox_url: &str,
|
||||||
) -> Result<(), DelivererError> {
|
) -> Result<(), DelivererError> {
|
||||||
log::info!("sending activity: {}", activity_json);
|
log::info!("sending activity to {}: {}", inbox_url, activity_json);
|
||||||
let headers = create_http_signature(
|
let headers = create_http_signature(
|
||||||
inbox_url,
|
inbox_url,
|
||||||
activity_json,
|
activity_json,
|
||||||
|
|
Loading…
Reference in a new issue