Removed stray log to console

This commit is contained in:
Stefan Zermatten
2021-02-23 12:47:34 +02:00
parent 612fcca68c
commit aad0c7249e

View File

@@ -10,7 +10,6 @@ export default function sendWebhook({webhookURL, data = {}}){
const hook = new Discord.WebhookClient(id, token);
// Send a message using the webhook
console.log(JSON.stringify(data, null, 2));
hook.send(data);
}