removed console.log

This commit is contained in:
Maieul BOYER 2026-01-12 16:40:19 +01:00 committed by Maix0
parent 43e3b9af26
commit ed2885f19d
3 changed files with 0 additions and 12 deletions

View file

@ -91,7 +91,6 @@ const route: FastifyPluginAsync = async (fastify): Promise<void> => {
outcome: v.outcome, outcome: v.outcome,
})), })),
}; };
console.log(JSON.stringify(typed_res));
return res.makeResponse(200, 'success', 'tournamentData.success', { return res.makeResponse(200, 'success', 'tournamentData.success', {
data: typed_res, data: typed_res,
}); });

View file

@ -75,7 +75,6 @@ export class Tournament {
else { else {
this.state = 'ended'; this.state = 'ended';
} }
console.log('next matchup ?:', this.matchup);
if (this.currentGame === null) { this.state = 'ended'; } if (this.currentGame === null) { this.state = 'ended'; }
} }

View file

@ -47,7 +47,6 @@ export class StateI {
socket.on('disconnect', () => this.cleanupUser(socket)); socket.on('disconnect', () => this.cleanupUser(socket));
socket.on('enqueue', () => this.enqueueUser(socket)); socket.on('enqueue', () => this.enqueueUser(socket));
socket.on('dequeue', () => this.dequeueUser(socket)); socket.on('dequeue', () => this.dequeueUser(socket));
socket.on('debugInfo', () => this.debugSocket(socket));
socket.on('gameMove', (e) => this.gameMove(socket, e)); socket.on('gameMove', (e) => this.gameMove(socket, e));
socket.on('keepalive', () => this.keepAlive(socket)); socket.on('keepalive', () => this.keepAlive(socket));
if (socket) { if (socket) {
@ -164,15 +163,6 @@ export class StateI {
socket.emit('queueEvent', 'unregistered'); socket.emit('queueEvent', 'unregistered');
} }
private debugSocket(socket: SSocket): void {
console.log(({
message: `socket debug for ${socket.id}`,
userid: socket.authUser.id,
queue: this.queue,
users: this.users,
}));
}
private gameUpdate(gameId: TTTGameId, socket: SSocket): void { private gameUpdate(gameId: TTTGameId, socket: SSocket): void {
if (!this.users.has(socket.authUser.id)) return; if (!this.users.has(socket.authUser.id)) return;
const user = this.users.get(socket.authUser.id)!; const user = this.users.get(socket.authUser.id)!;