diff --git a/src/routes/webhook.js b/src/routes/webhook.js index bce6dbd..699cc6c 100644 --- a/src/routes/webhook.js +++ b/src/routes/webhook.js @@ -47,7 +47,7 @@ export const webhookRoutes = (fastify, _, done) => { if (contentType === 'application/atom+xml') { try { // Parse the XML payload - console.log(body) + console.log(JSON.stringify(body)) const feed = body["feed"]; // Example processing: log the video IDs of new videos const entry = feed.entry[0];