1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Remove log from websocket heartbeat

This commit is contained in:
Andrew Kingston 2023-06-05 11:55:45 +01:00
parent 29968df6d9
commit f7e21c3348

View file

@ -92,7 +92,6 @@ export class BaseSocket {
this.io.on("connection", async socket => {
// Add built in handler for heartbeats
socket.on(SocketEvent.Heartbeat, async () => {
console.log(socket.data.email, "heartbeat received")
await this.extendSessionTTL(socket.data.sessionId)
})