From e78f0bf1b1ef595a843374a3374d423c739a8cf9 Mon Sep 17 00:00:00 2001 From: default Date: Mon, 11 Dec 2023 16:00:16 +0100 Subject: [PATCH] Fixed error message. --- activitypub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activitypub.c b/activitypub.c index f7a76d2..4f109cc 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1513,7 +1513,7 @@ int process_input_message(snac *snac, xs_dict *msg, xs_dict *req) if (!valid_status(a_status)) { /* do not retry 'Delete' messages */ if (strcmp(type, "Delete") == 0) { - srv_debug(1, xs_fmt("dropping 'Delete' message due to actor error", actor, a_status)); + srv_debug(1, xs_fmt("dropping 'Delete' message due to actor error %s %d", actor, a_status)); return -1; }