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 += `