aboutsummaryrefslogtreecommitdiff
path: root/src/lib/utils
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-28 20:20:07 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-05-28 20:20:07 -0400
commit5b5f0bf5667b922037508dfa88e40a1f8a2671ec (patch)
tree3fac5061551188533af6051a6f45e711ad4a49c7 /src/lib/utils
parent6bb93ad27fbc39dc8cf6c8adb5e88e7c39e6c788 (diff)
downloadtanzanite-5b5f0bf5667b922037508dfa88e40a1f8a2671ec.tar.gz
tanzanite-5b5f0bf5667b922037508dfa88e40a1f8a2671ec.tar.bz2
tanzanite-5b5f0bf5667b922037508dfa88e40a1f8a2671ec.zip
bruh
Diffstat (limited to 'src/lib/utils')
-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');