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 6da6d1256c
commit 863eac6375
2 changed files with 9 additions and 3 deletions

View file

@ -62,7 +62,8 @@ module.exports = class Client extends Discord.Client {
onDebug(info) { onDebug(info) {
info = info.replace(/Authenticated using token [^ ]+/, "Authenticated using token [redacted]"); 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) { onGuildCreate(guild) {
@ -92,7 +93,8 @@ module.exports = class Client extends Discord.Client {
} }
/** /**
* @param {*} json * @param {*} json
* @param {*} guildDataModel
*/ */
fromJSON(json) { fromJSON(json) {
const guildsData = Object.keys(json); const guildsData = Object.keys(json);

View file

@ -3,5 +3,9 @@
"website": "https://benji7425.github.io", "website": "https://benji7425.github.io",
"discordInvite": "https://discord.gg/SSkbwSJ", "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", "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"
]
} }