improve connection monitor and server restart

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-04-25 08:50:57 +02:00
parent 15c23ebb80
commit 5baa23300d
6 changed files with 50 additions and 22 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ async function timer(name, elapsed) {
async function logTimers() {
allTimers.sort((a, b) => b[1] - a[1]);
const filteredTimers = allTimers.filter((t) => t[1] > 50);
log('timers', filteredTimers);
debug('startupTimers', filteredTimers);
// xhrPost(`${window.api}/log`, { debug: JSON.stringify(filteredTimers) });
}