From 04e87e1a9f0779300ae65e50b7fb47f1d2a498c1 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 5 Mar 2018 18:37:17 +0100 Subject: [PATCH] profiling: suppress debug statements --- src/util-profiling-prefilter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util-profiling-prefilter.c b/src/util-profiling-prefilter.c index 2ae498557f..cb5e34e353 100644 --- a/src/util-profiling-prefilter.c +++ b/src/util-profiling-prefilter.c @@ -298,9 +298,9 @@ SCProfilingPrefilterInitCounters(DetectEngineCtx *de_ctx) for ( ; hb != NULL; hb = HashListTableGetListNext(hb)) { PrefilterStore *ctx = HashListTableGetListData(hb); de_ctx->profile_prefilter_ctx->data[ctx->id].name = ctx->name; - SCLogNotice("prefilter %s set up", de_ctx->profile_prefilter_ctx->data[ctx->id].name); + SCLogDebug("prefilter %s set up", de_ctx->profile_prefilter_ctx->data[ctx->id].name); } - SCLogNotice("size alloc'd %u", (uint32_t)size * (uint32_t)sizeof(SCProfilePrefilterData)); + SCLogDebug("size alloc'd %u", (uint32_t)size * (uint32_t)sizeof(SCProfilePrefilterData)); SCLogPerf("Registered %"PRIu32" prefilter profiling counters.", size); } -- 2.47.2