1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00

📝 improve logging

This commit is contained in:
Flam3rboy 2021-10-12 21:54:58 +02:00
parent f2e8e2e031
commit 90c5444324
4 changed files with 1 additions and 5 deletions

View File

@ -32,7 +32,6 @@ export class Server {
}
this.server.on("upgrade", (request, socket, head) => {
console.log("socket requests upgrade", request.url);
// @ts-ignore
this.ws.handleUpgrade(request, socket, head, (socket) => {
this.ws.emit("connection", socket, request);

View File

@ -28,6 +28,7 @@ export async function Connection(
socket.on("close", Close);
// @ts-ignore
socket.on("message", Message);
console.log(`[Gateway] Connections: ${this.clients.size}`);
const { searchParams } = new URL(`http://localhost${request.url}`);
// @ts-ignore

View File

@ -37,8 +37,6 @@ export async function Message(this: WebSocket, buffer: WS.Data) {
return;
}
console.log("[Gateway] Opcode " + OPCODES[data.op]);
try {
return await OPCodeHandler.call(this, data);
} catch (error) {

View File

@ -214,8 +214,6 @@ export async function onIdentify(this: WebSocket, data: Payload) {
// application // TODO for applications
};
console.log("Send ready");
// TODO: send real proper data structure
await Send(this, {
op: OPCODES.Dispatch,