aboutsummaryrefslogtreecommitdiff
path: root/source/client/logger.ts
diff options
context:
space:
mode:
Diffstat (limited to 'source/client/logger.ts')
-rw-r--r--source/client/logger.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/client/logger.ts b/source/client/logger.ts
index 637f5c0..745ce88 100644
--- a/source/client/logger.ts
+++ b/source/client/logger.ts
@@ -9,6 +9,7 @@ const log_tag_color: { [key in LogTag]: string } = {
}
// TODO maybe log time aswell
+// deno-lint-ignore no-explicit-any
export function log(tag: LogTag, message: string, ...data: any[]) {
for (let i = 0; i < data.length; i++) {
const e = data[i];