diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-26 22:53:27 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-26 22:53:27 -0400 |
commit | 7990abdb511eeec2a114b124a3628b10bfefc342 (patch) | |
tree | c9cc92439bb0b8385e8fcd82c169fd6f86bb1974 /src/tasks/updateCache.ts | |
parent | 80d5b5b11ae261945dc725a0a80115922003afcf (diff) | |
download | tanzanite-7990abdb511eeec2a114b124a3628b10bfefc342.tar.gz tanzanite-7990abdb511eeec2a114b124a3628b10bfefc342.tar.bz2 tanzanite-7990abdb511eeec2a114b124a3628b10bfefc342.zip |
chore: add new eslint rule
Diffstat (limited to 'src/tasks/updateCache.ts')
-rw-r--r-- | src/tasks/updateCache.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tasks/updateCache.ts b/src/tasks/updateCache.ts index 721b2db..9ca7926 100644 --- a/src/tasks/updateCache.ts +++ b/src/tasks/updateCache.ts @@ -14,7 +14,7 @@ export class UpdateCacheTask extends BushTask { public async exec(): Promise<void> { await UpdateCacheTask.updateGlobalCache(client); await UpdateCacheTask.updateGuildCache(client); - await client.logger.verbose(`UpdateCache`, `Updated cache.`); + void client.logger.verbose(`UpdateCache`, `Updated cache.`); } public static async init(client: BushClient): Promise<void> { |