From 185db7d3fcd613d8ca32a2a05cb6745cb668da22 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Mon, 9 Oct 2023 11:38:14 -0400 Subject: [PATCH] Added more logging --- api/activitypub/sendNote.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/api/activitypub/sendNote.ts b/api/activitypub/sendNote.ts index 86ad2aa2c..fd75ec755 100644 --- a/api/activitypub/sendNote.ts +++ b/api/activitypub/sendNote.ts @@ -95,6 +95,7 @@ export default async function (req: VercelRequest, res: VercelResponse) { // Item will be an entity, i.e, { Create { Note } } const response = await sendSignedRequest(actorInbox, <AP.Activity> item); sendingIds.add(item.id) + console.log(`added to sendingIds: ${item.id}`) console.log(`Send result: ${actorInbox}`, response.status, response.statusText, await response.text()); } } -- GitLab