mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-12 23:20:17 +00:00
19 lines
589 B
JavaScript
19 lines
589 B
JavaScript
const MusicClient = require("./struct/client.js");
|
|
const DiscordWebhook = require("discord-webhook-node");
|
|
const client = new MusicClient({});
|
|
const webhookClient = new DiscordWebhook.Webhook(client.config.webhookUrl);
|
|
|
|
const oldConsole = {};
|
|
oldConsole.log = console.log;
|
|
console.log = function (arg) {
|
|
oldConsole.log(arg);
|
|
if (!client.config.devMode && arg)
|
|
webhookClient.send(JSON.stringify(arg));
|
|
};
|
|
|
|
oldConsole.error = console.error;
|
|
console.error = function (arg) {
|
|
oldConsole.error(arg);
|
|
if (!client.config.devMode && arg)
|
|
webhookClient.send(JSON.stringify(arg));
|
|
}; |