diff options
author | default <nobody@localhost> | 2022-11-17 09:16:25 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-17 09:16:25 +0100 |
commit | 35ad83e9ecc0f3ace2921dbd9114350de66e6fda (patch) | |
tree | 5ca8742bf259874df0f6c918d9a66aa179261ea8 /activitypub.c | |
parent | afce422785cb98608b135a473f6f6c7c0c592277 (diff) |
Also log the inbox in send_to_actor().
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 44b5ba2..96737ea 100644 --- a/activitypub.c +++ b/activitypub.c @@ -162,7 +162,7 @@ int send_to_actor(snac *snac, char *actor, char *msg, d_char **payload, int *p_s if (!xs_is_null(inbox)) status = send_to_inbox(snac, inbox, msg, payload, p_size); - snac_log(snac, xs_fmt("send_to_actor %s %d", actor, status)); + snac_log(snac, xs_fmt("send_to_actor %s (%s) %d", actor, inbox, status)); return status; } |