remove a buncha stray console.log's I used for debugging oops
This commit is contained in:
parent
4453f2dc51
commit
bb7e9f8cd8
1 changed files with 0 additions and 4 deletions
|
@ -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])),
|
||||
|
|
Loading…
Reference in a new issue