From 5b5f0bf5667b922037508dfa88e40a1f8a2671ec Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Fri, 28 May 2021 20:20:07 -0400 Subject: bruh --- src/lib/utils/Logger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/utils') diff --git a/src/lib/utils/Logger.ts b/src/lib/utils/Logger.ts index b0f7da5..96837b6 100644 --- a/src/lib/utils/Logger.ts +++ b/src/lib/utils/Logger.ts @@ -26,7 +26,7 @@ export class Logger { } public async verbose(message: string, sendChannel = false): Promise { - if (!this.client.config.verbose) return; + if (!this.client.config.logging.verbose) return; console.log(chalk`{bgMagenta VERBOSE} ` + message); if (sendChannel) { const channel = await this.getChannel('log'); -- cgit