Revert "Removed ignoring of certain debug message in debug.log"

This reverts commit 1e4016ffd4d78d3a85c9161ab702b97979155753 in discord-bot-core subrepo
This commit is contained in:
benji7425 2017-11-26 23:35:51 +00:00
parent f2313c7da4
commit d2fa55beae
2 changed files with 9 additions and 3 deletions

View File

@ -62,7 +62,8 @@ module.exports = class Client extends Discord.Client {
onDebug(info) {
info = info.replace(/Authenticated using token [^ ]+/, "Authenticated using token [redacted]");
CoreUtil.dateDebug(info);
if (!InternalConfig.debugIgnores.some(x => info.startsWith(x)))
CoreUtil.dateDebug(info);
}
onGuildCreate(guild) {
@ -92,7 +93,8 @@ module.exports = class Client extends Discord.Client {
}
/**
* @param {*} json
* @param {*} json
* @param {*} guildDataModel
*/
fromJSON(json) {
const guildsData = Object.keys(json);

View File

@ -3,5 +3,9 @@
"website": "https://benji7425.github.io",
"discordInvite": "https://discord.gg/SSkbwSJ",
"defaultDMResponse": "This bot does not have any handling for direct messages. To learn more or get help please visit %s, or join my Discord server here: %s",
"reconnectTimeout": 5000
"reconnectTimeout": 5000,
"debugIgnores":[
"[ws] [connection] Sending a heartbeat",
"[ws] [connection] Heartbeat acknowledged"
]
}