diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-04-02 18:51:59 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-04-02 18:51:59 -0400 |
commit | 5be90204669b28334040d266fc9751da7d284845 (patch) | |
tree | ea81ae769cc88967dca4b32300fa5e08b7555046 /src | |
parent | 4fbc1e0f743e81e718762679c0d3e842c2a58ee9 (diff) | |
download | tanzanite-5be90204669b28334040d266fc9751da7d284845.tar.gz tanzanite-5be90204669b28334040d266fc9751da7d284845.tar.bz2 tanzanite-5be90204669b28334040d266fc9751da7d284845.zip |
fix(BushLogger#debug): remove new line
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/utils/BushLogger.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/BushLogger.ts b/src/lib/utils/BushLogger.ts index 24d0300..30eba07 100644 --- a/src/lib/utils/BushLogger.ts +++ b/src/lib/utils/BushLogger.ts @@ -176,7 +176,7 @@ export class BushLogger { public static debug(content: any, depth = 0): void { if (!client.config.isDevelopment) return; const newContent = this.#inspectContent(content, depth, true); - this.stdout(`${chalk.bgMagenta(this.#getTimeStamp())} ${chalk.magenta('[Debug]')}\n${newContent}`); + this.stdout(`${chalk.bgMagenta(this.#getTimeStamp())} ${chalk.magenta('[Debug]')} ${newContent}`); } /** |