mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-10 20:52:42 +01:00
📝 improve logging
This commit is contained in:
parent
b0385e0fcb
commit
ec0e2a804c
@ -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);
|
||||
|
@ -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
|
||||
|
@ -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) {
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user