aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/utils/Logger.ts2
1 files changed, 1 insertions, 1 deletions
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<void> {
- 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');