From f53e99d2299f118df5a6eff60d101414d69d4912 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Mon, 29 Sep 2025 16:00:57 +0200 Subject: [PATCH] luci-mod-status: fix syslog warning (4) log level filter Closes #7967 the warning syslog level is internally denoted as 'warn'. Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/view/status/syslog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js index a71f4d95e7..651188f12d 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/syslog.js @@ -46,7 +46,7 @@ return view.extend({ ['1', 'alert', _('Alert')], ['2', 'crit', _('Critical')], ['3', 'err', _('Error')], - ['4', 'warning', _('Warning')], + ['4', 'warn', _('Warning')], ['5', 'notice', _('Notice')], ['6', 'info', _('Info')], ['7', 'debug', _('Debug')] -- 2.30.2