From 35d50fad0a96780ce4273e137d3cdbe2e202f750 Mon Sep 17 00:00:00 2001 From: Gronod Date: Sun, 17 May 2026 08:50:13 +0100 Subject: [PATCH] debug: log task timing data in status panel to diagnose full bars --- public/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app.js b/public/app.js index f441acc..cd65383 100644 --- a/public/app.js +++ b/public/app.js @@ -705,6 +705,7 @@ function renderStatusPanel(data, panel) {
Last Poll (${lp.totalMs}ms total, ${pollAge}s ago)
`; const maxTaskMs = lp.tasks.reduce((max, t) => Math.max(max, t.ms), 1); + console.log('[Status] task timings:', JSON.stringify(lp.tasks), 'maxTaskMs:', maxTaskMs); for (const t of lp.tasks) { const barWidth = Math.max(2, (t.ms / maxTaskMs) * 100); html += `