Author: Hannes von Haugwitz <hannes@vonhaugwitz.com>
Date:   Sat Nov 23 22:21:13 2024 +0100
Description: Move failed JIT compilation log message to DEBUG level
Forwarded: not-needed
Origin: upstream, https://github.com/aide/aide/commit/3febd4629a14ebd8f11fefe57711566f3ffc4bfc
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1087721
--- a/src/seltree.c
+++ b/src/seltree.c
@@ -310,7 +310,7 @@ rx_rule * add_rx_to_tree(char * rx, REST
         if (pcre2_jit < 0) {
             PCRE2_UCHAR pcre2_error[128];
             pcre2_get_error_message(pcre2_jit, pcre2_error, 128);
-            log_msg(LOG_LEVEL_NOTICE, "JIT compilation for regex '%s' failed: %s (fall back to interpreted matching)", r->rx, pcre2_error);
+            log_msg(LOG_LEVEL_DEBUG, "JIT compilation for regex '%s' failed: %s (fall back to interpreted matching)", r->rx, pcre2_error);
         } else {
             log_msg(LOG_LEVEL_DEBUG, "JIT compilation for regex '%s' successful", r->rx);
         }
