0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Updated logging message for webhooks

- removes double space and tidies up the output
This commit is contained in:
Daniel Lockyer 2020-12-03 17:50:53 +00:00
parent 04fb7f8e69
commit 47397ca7a6
No known key found for this signature in database
GPG key ID: FFBC6FA2A6F6ABC1

View file

@ -82,7 +82,7 @@ module.exports = (event, model) => {
retry: 5
};
logging.info(`Trigger Webhook for "${webhook.get('event')}" with url "${url}".`);
logging.info(`Triggering webhook for "${webhook.get('event')}" with url "${url}"`);
request(url, opts)
.then(response.onSuccess(webhook))