diff --git a/routes/webhook.js b/routes/webhook.js index 4fd7994..d84c995 100644 --- a/routes/webhook.js +++ b/routes/webhook.js @@ -13,8 +13,6 @@ router.post('/', (req, res) => { const event = body.event || ''; const data = body || {}; info(`Webhook: ${event}\nbody: ${JSON.stringify(body)}`); - info('headers: ' + JSON.stringify(req.headers)) - return; try { if (event === 'created: Allocation') { enqueueNatAdd(data.ip, data.port);