From 3b0bb0da22533bb3d087cf87897ff4263e3ff7de Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 3 Apr 2022 12:30:23 -0400 Subject: feat(logging): use proxies for console.log etc instead of manipulating stdout and stderr directly --- src/lib/common/AutoMod.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/common') diff --git a/src/lib/common/AutoMod.ts b/src/lib/common/AutoMod.ts index 1aa6266..db3e709 100644 --- a/src/lib/common/AutoMod.ts +++ b/src/lib/common/AutoMod.ts @@ -200,7 +200,7 @@ export class AutoMod { } }, (err: any, response: any) => { - if (err) return client.console.stdout(err?.message); + if (err) return console.log(err?.message); const normalize = (val: number, min: number, max: number) => (val - min) / (max - min); @@ -214,10 +214,10 @@ export class AutoMod { } }; - client.console.stdout(chalk.cyan(this.message.content)); + console.log(chalk.cyan(this.message.content)); Object.entries(response.data.attributeScores) .sort(([a], [b]) => a.localeCompare(b)) - .forEach(([key, value]: any[]) => client.console.raw(chalk.white(key), color(value.summaryScore.value))); + .forEach(([key, value]: any[]) => console.log(chalk.white(key), color(value.summaryScore.value))); } ); } -- cgit