From bb7e9f8cd825519b90701504e09f68005c784674 Mon Sep 17 00:00:00 2001 From: elijahr2411 Date: Fri, 27 Jan 2023 23:53:26 -0500 Subject: [PATCH] remove a buncha stray console.log's I used for debugging oops --- src/index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/index.js b/src/index.js index e19b0c1..6d12c00 100644 --- a/src/index.js +++ b/src/index.js @@ -81,7 +81,6 @@ class CollabVMClient { try { await this.connect(); } catch { - console.log("h"); this.#onClose(); } this.connectToVM(this.node); @@ -279,7 +278,6 @@ class CollabVMClient { this.reloadUsers(); break; case "vote": - console.log(msgArr); switch (msgArr[1]) { case "0": // Vote started @@ -475,7 +473,6 @@ class CollabVMClient { keyevent(e, down) { e.preventDefault(); var keysym = GetKeysym(e.keyCode, e.keyIdentifier, e.key, e.location); - console.log(keysym); if (keysym === undefined) return; this.key(keysym, down); } @@ -495,7 +492,6 @@ class CollabVMClient { }, adminInstruction: (...args) => { // Compatibility args.unshift("admin"); - console.log(args); this.socket.send(guacutils.encode(args)); }, restore: () => this.socket.send(guacutils.encode(["admin", "8", this.node])),