diff options
author | default <nobody@localhost> | 2024-03-04 09:22:06 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-03-04 09:22:06 +0100 |
commit | ae6df3d288f5fabaa12450561942e48b813bc84c (patch) | |
tree | 2a9c63bf22b75bb8605e787fbbc3ce07402bd25e /activitypub.c | |
parent | 61647de38bbd8751d18680251f31d6b5347a714c (diff) |
More logging tweaks.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 0ddb266..71b476e 100644 --- a/activitypub.c +++ b/activitypub.c @@ -2457,7 +2457,8 @@ void process_queue_item(xs_dict *q_item) if (is_msg_for_me(&user, msg)) { xs *fn = xs_fmt("%s/queue/%s.json", user.basedir, ntid); - snac_debug(&user, 1, xs_fmt("enqueue_input (from shared inbox) %s", fn)); + snac_debug(&user, 1, + xs_fmt("enqueue_input (from shared inbox) %s", xs_dict_get(msg, "id"))); if (link(tmpfn, fn) < 0) srv_log(xs_fmt("link(%s, %s) error", tmpfn, fn)); |