]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
mpm/hs: turn cleanup messages in to debug 8288/head
authorVictor Julien <vjulien@oisf.net>
Wed, 30 Nov 2022 15:18:26 +0000 (16:18 +0100)
committerVictor Julien <vjulien@oisf.net>
Wed, 14 Dec 2022 19:04:40 +0000 (20:04 +0100)
src/util-mpm-hs.c

index fb5d4e7cdc1ba8e8a2431792fdc09c353c234eab..0271da80b2986b21892acdc31491b03b0c4d1886 100644 (file)
@@ -1076,7 +1076,7 @@ void MpmHSGlobalCleanup(void)
 {
     SCMutexLock(&g_scratch_proto_mutex);
     if (g_scratch_proto) {
-        SCLogPerf("Cleaning up Hyperscan global scratch");
+        SCLogDebug("Cleaning up Hyperscan global scratch");
         hs_free_scratch(g_scratch_proto);
         g_scratch_proto = NULL;
     }
@@ -1084,7 +1084,7 @@ void MpmHSGlobalCleanup(void)
 
     SCMutexLock(&g_db_table_mutex);
     if (g_db_table != NULL) {
-        SCLogPerf("Clearing Hyperscan database cache");
+        SCLogDebug("Clearing Hyperscan database cache");
         HashTableFree(g_db_table);
         g_db_table = NULL;
     }