From a68bc82dd08b894d1b901d73f98a5c71e64d3bff Mon Sep 17 00:00:00 2001 From: Juliana Fajardini Date: Mon, 25 May 2026 13:22:34 -0300 Subject: [PATCH] detect/parse: convert Notice Log into Debug (cherry picked from commit 693360205019c531c4d4cd79a2740e5cdb9b813d) --- src/detect-parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect-parse.c b/src/detect-parse.c index 8ed7954cf6..556467cff1 100644 --- a/src/detect-parse.c +++ b/src/detect-parse.c @@ -3698,7 +3698,7 @@ static int DoParsePolicy(const char *policy_name, struct DetectFirewallPolicy *p int idx = 0; SCConfNode *paction = NULL; TAILQ_FOREACH (paction, &policy_actions->head, next) { - SCLogNotice("fw: %s => %s", policy_name, paction->val); + SCLogDebug("fw: %s => %s", policy_name, paction->val); if (SigParseActionDo(paction->val, idx, true, &action, &action_scope) < 0) return -1; idx++;