mpm/hs: turn cleanup messages in to debug

pull/8288/head
Victor Julien 3 years ago
parent 892b7021b2
commit 393546af07

@ -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;
}

Loading…
Cancel
Save