mirror of
https://github.com/musix-org/musix-oss
synced 2025-08-01 20:54:33 +00:00
additional error logging and debugging.
This commit is contained in:
10
index.js
10
index.js
@@ -7,7 +7,9 @@ if (config.devMode) {
|
||||
config.shards = 1;
|
||||
}
|
||||
|
||||
const { ShardingManager } = require("discord.js");
|
||||
const {
|
||||
ShardingManager
|
||||
} = require("discord.js");
|
||||
const manager = new ShardingManager("./src/bot.js", {
|
||||
token: config.token,
|
||||
respawn: config.respawn,
|
||||
@@ -28,3 +30,9 @@ console.log = function (arg) {
|
||||
oldConsole.log(arg);
|
||||
if (!config.devMode) webhookClient.send(arg);
|
||||
};
|
||||
|
||||
oldConsole.error = console.error;
|
||||
console.error = function (arg) {
|
||||
oldConsole.error(arg);
|
||||
if (!client.config.devMode) webhookClient.send(arg);
|
||||
};
|
Reference in New Issue
Block a user