forked from CringeStudios/gamja
lib/client: log close code
This commit is contained in:
parent
aa79067179
commit
6430fa252a
@ -70,8 +70,9 @@ export default class Client extends EventTarget {
|
||||
this.ws.addEventListener("open", this.handleOpen.bind(this));
|
||||
this.ws.addEventListener("message", this.handleMessage.bind(this));
|
||||
|
||||
this.ws.addEventListener("close", () => {
|
||||
console.log("Connection closed");
|
||||
this.ws.addEventListener("close", (event) => {
|
||||
console.log("Connection closed (code: " + event.code + ")");
|
||||
|
||||
this.ws = null;
|
||||
this.setStatus(Client.Status.DISCONNECTED);
|
||||
this.availableCaps = {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user