From 7a17afee58002324355007d1e7af98fb37c4ff66 Mon Sep 17 00:00:00 2001 From: 2M4U Date: Fri, 16 Sep 2022 19:29:45 +0100 Subject: [PATCH] added 'displayFilename: true' to the Logger; Debug Purposes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For easier Debugging purposes, mainly to know where the console output is from. `[16/09/2022] [19:25:52] [ready.js] [Manager] » ⁉️ Error: client.users.size is not a function` --- src/structures/Client.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/structures/Client.js b/src/structures/Client.js index f7c643d1..e547f3d6 100644 --- a/src/structures/Client.js +++ b/src/structures/Client.js @@ -51,6 +51,7 @@ module.exports = class Client extends Discord.Client { this.logger = new Logger({ displayTimestamp: true, displayDate: true, + displayFilename: true, //For easier Debugging purposes, mainly to know where the console output is from. }, this); this.databaseHelper = new DatabaseHelper(this);