diff --git a/src/activitypub/index.js b/src/activitypub/index.js index f57a39e322..81ade2c8b4 100644 --- a/src/activitypub/index.js +++ b/src/activitypub/index.js @@ -339,7 +339,7 @@ async function sendMessage(uri, id, type, payload, attempts = 1) { throw new Error(String(body)); } } catch (e) { - winston.warn(`[activitypub/send] Could not send ${payload.type} to ${uri}; error: ${e.message}`); + ActivityPub.helpers.log(`[activitypub/send] Could not send ${payload.type} to ${uri}; error: ${e.message}`); // add to retry queue if (attempts < 12) { // stop attempting after ~2 months const timeout = (4 ** attempts) * 1000; // exponential backoff