mirror of
https://github.com/spacebarchat/server.git
synced 2026-07-29 13:59:25 +00:00
Dont log unix socket emissions that are below 5ms due to log noise
This commit is contained in:
@@ -324,6 +324,8 @@ class UnixSocketWriter {
|
||||
}
|
||||
}
|
||||
|
||||
console.log(`[Events] Unix socket writer emitted to ${Object.entries(this.clients).length} sockets in ${tsw.elapsed().totalMilliseconds}ms`);
|
||||
if (tsw.elapsed().totalMilliseconds > 5)
|
||||
// else it's too noisy
|
||||
console.log(`[Events] Unix socket writer emitted to ${Object.entries(this.clients).length} sockets in ${tsw.elapsed().totalMilliseconds}ms`);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user