mirror of
https://codeberg.org/emersion/gamja
synced 2025-03-15 00:47:46 +01:00
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("open", this.handleOpen.bind(this));
|
||||||
this.ws.addEventListener("message", this.handleMessage.bind(this));
|
this.ws.addEventListener("message", this.handleMessage.bind(this));
|
||||||
|
|
||||||
this.ws.addEventListener("close", () => {
|
this.ws.addEventListener("close", (event) => {
|
||||||
console.log("Connection closed");
|
console.log("Connection closed (code: " + event.code + ")");
|
||||||
|
|
||||||
this.ws = null;
|
this.ws = null;
|
||||||
this.setStatus(Client.Status.DISCONNECTED);
|
this.setStatus(Client.Status.DISCONNECTED);
|
||||||
this.availableCaps = {};
|
this.availableCaps = {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user