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.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/client/logger.ts b/source/client/logger.ts
index ea319b1..9960c70 100644
--- a/source/client/logger.ts
+++ b/source/client/logger.ts
@@ -1,10 +1,11 @@
-export type LogTag = "webrtc" | "ws" | "media" | "*"
+export type LogTag = "webrtc" | "ws" | "media" | "*" | "misc"
const log_tag_color: { [key in LogTag]: string } = {
"*": "#FF0000",
webrtc: "#990099",
media: "#999900",
- ws: "#009999"
+ ws: "#009999",
+ misc: "#000099",
}
// TODO maybe log time aswell