From: Victor Julien Date: Wed, 30 Nov 2022 15:18:26 +0000 (+0100) Subject: mpm/hs: turn cleanup messages in to debug X-Git-Tag: suricata-7.0.0-rc1~253 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8288%2Fhead;p=thirdparty%2Fsuricata.git mpm/hs: turn cleanup messages in to debug --- 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; }