From 17a8adae05b41dc5c77588f7827bceaacf9f9e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20D=2E=20M=C3=BCller?= Date: Sat, 15 Oct 2022 16:11:15 +0000 Subject: [PATCH] remove debug code --- sd-card/html/graph.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sd-card/html/graph.html b/sd-card/html/graph.html index 3d451282..75e4c75c 100644 --- a/sd-card/html/graph.html +++ b/sd-card/html/graph.html @@ -40,11 +40,9 @@ fetch('/fileserver/log/message/log_'+date+'.txt') var value = line.split(" ")[6]; var time = line.split(" ")[0]; console.log("> "+time+" "+value+"\n"); - if (value<1000) { - trace.x.push(timex); - timex += 1; - trace.y.push(value); - } + trace.x.push(timex); + timex += 1; + trace.y.push(value); } } console.log(trace);