diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-04-03 12:30:23 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-04-03 12:30:23 -0400 |
commit | 3b0bb0da22533bb3d087cf87897ff4263e3ff7de (patch) | |
tree | f0c7bd181fff2f29d02ff3d7a2e4c15c77392460 /src/listeners/client | |
parent | 5be90204669b28334040d266fc9751da7d284845 (diff) | |
download | tanzanite-3b0bb0da22533bb3d087cf87897ff4263e3ff7de.tar.gz tanzanite-3b0bb0da22533bb3d087cf87897ff4263e3ff7de.tar.bz2 tanzanite-3b0bb0da22533bb3d087cf87897ff4263e3ff7de.zip |
feat(logging): use proxies for console.log etc instead of manipulating stdout and stderr directly
Diffstat (limited to 'src/listeners/client')
-rw-r--r-- | src/listeners/client/ready.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/listeners/client/ready.ts b/src/listeners/client/ready.ts index d53ed9b..c550c6b 100644 --- a/src/listeners/client/ready.ts +++ b/src/listeners/client/ready.ts @@ -19,7 +19,7 @@ export default class ReadyListener extends BushListener { userCount = `<<${client.users.cache.size.toLocaleString()}>>`; void client.logger.success('ready', `Logged in to ${tag} serving ${guildCount} guilds and ${userCount} users.`); - client.console.stdout( + console.log( chalk.blue( `------------------------------------------------------------------------------${ client.config.isDevelopment ? '---' : client.config.isBeta ? '----' : '' |