From 5f780955eb97d6d6d013f903fe64be03e41fcc29 Mon Sep 17 00:00:00 2001 From: Ivan K Date: Thu, 3 Apr 2025 13:42:55 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style(podkop):=20update=20error?= =?UTF-8?q?=20log=20filtering=20criteria?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../htdocs/luci-static/resources/view/podkop/podkop.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js index 91493b1..f7df280 100644 --- a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js +++ b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/podkop.js @@ -895,9 +895,8 @@ function startErrorPolling() { const logs = result.stdout; const errorLines = logs.split('\n').filter(line => - line.includes('error') || - line.includes('Error') || - line.includes('ERROR') + // line.includes('saved for future filters') || + line.includes('[critical]') ); if (errorLines.length > 0) {