From 393546af071cbe4e671495d9205ea0adf20cb609 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Wed, 30 Nov 2022 16:18:26 +0100 Subject: [PATCH] mpm/hs: turn cleanup messages in to debug --- src/util-mpm-hs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util-mpm-hs.c b/src/util-mpm-hs.c index fb5d4e7cdc..0271da80b2 100644 --- a/src/util-mpm-hs.c +++ b/src/util-mpm-hs.c @@ -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; } -- 2.47.2