remove a buncha stray console.log's I used for debugging oops

This commit is contained in:
elijahr2411 2023-01-27 23:53:26 -05:00
parent 4453f2dc51
commit bb7e9f8cd8

View file

@ -81,7 +81,6 @@ class CollabVMClient {
try { try {
await this.connect(); await this.connect();
} catch { } catch {
console.log("h");
this.#onClose(); this.#onClose();
} }
this.connectToVM(this.node); this.connectToVM(this.node);
@ -279,7 +278,6 @@ class CollabVMClient {
this.reloadUsers(); this.reloadUsers();
break; break;
case "vote": case "vote":
console.log(msgArr);
switch (msgArr[1]) { switch (msgArr[1]) {
case "0": case "0":
// Vote started // Vote started
@ -475,7 +473,6 @@ class CollabVMClient {
keyevent(e, down) { keyevent(e, down) {
e.preventDefault(); e.preventDefault();
var keysym = GetKeysym(e.keyCode, e.keyIdentifier, e.key, e.location); var keysym = GetKeysym(e.keyCode, e.keyIdentifier, e.key, e.location);
console.log(keysym);
if (keysym === undefined) return; if (keysym === undefined) return;
this.key(keysym, down); this.key(keysym, down);
} }
@ -495,7 +492,6 @@ class CollabVMClient {
}, },
adminInstruction: (...args) => { // Compatibility adminInstruction: (...args) => { // Compatibility
args.unshift("admin"); args.unshift("admin");
console.log(args);
this.socket.send(guacutils.encode(args)); this.socket.send(guacutils.encode(args));
}, },
restore: () => this.socket.send(guacutils.encode(["admin", "8", this.node])), restore: () => this.socket.send(guacutils.encode(["admin", "8", this.node])),