From c693c7c62c2360826e15e31f259b00b5814c2d3e Mon Sep 17 00:00:00 2001 From: default Date: Mon, 11 Dec 2023 07:37:53 +0100 Subject: Some logging tweaks. --- activitypub.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index f4c081b..5afe304 100644 --- a/activitypub.c +++ b/activitypub.c @@ -2052,6 +2052,7 @@ void process_queue_item(xs_dict *q_item) xs *users = user_list(); xs_list *p = users; char *v; + int cnt = 0; while (xs_list_iter(&p, &v)) { snac user; @@ -2064,6 +2065,8 @@ void process_queue_item(xs_dict *q_item) if (link(tmpfn, fn) < 0) srv_log(xs_fmt("link(%s, %s) error", tmpfn, fn)); + + cnt++; } user_free(&user); @@ -2071,6 +2074,9 @@ void process_queue_item(xs_dict *q_item) } unlink(tmpfn); + + if (cnt == 0) + srv_debug(1, xs_fmt("no valid recipients for %s", tmpfn)); } else srv_log(xs_fmt("unexpected q_item type '%s'", type)); -- cgit v1.2.3