diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-03-14 20:44:16 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-03-14 20:44:16 -0400 |
commit | 6c9710cb76347b79a2463ec0ca5bde59177b531f (patch) | |
tree | f6b00aa2af9b84ca2e99c3699145fe5475a27cf9 /src/lib/common/HighlightManager.ts | |
parent | 59a4eb09916ad7c9e6cd8ea8b4d3a72189c284ce (diff) | |
download | tanzanite-6c9710cb76347b79a2463ec0ca5bde59177b531f.tar.gz tanzanite-6c9710cb76347b79a2463ec0ca5bde59177b531f.tar.bz2 tanzanite-6c9710cb76347b79a2463ec0ca5bde59177b531f.zip |
feat(logging): over complicated repl
Diffstat (limited to 'src/lib/common/HighlightManager.ts')
-rw-r--r-- | src/lib/common/HighlightManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/common/HighlightManager.ts b/src/lib/common/HighlightManager.ts index a8bacee..4347c27 100644 --- a/src/lib/common/HighlightManager.ts +++ b/src/lib/common/HighlightManager.ts @@ -214,7 +214,7 @@ export class HighlightManager { if (this.lastedDMedUserCooldown.has(user)) { const lastDM = this.lastedDMedUserCooldown.get(user)!; if (new Date().getTime() - lastDM.getTime() < 5 * Time.Minute) { - console.log(`User ${user} has been dmed recently.`); + void client.console.verbose('Highlight', `User <<${user}>> has been dmed recently.`); return false; } } |