]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
profiling: suppress debug statements 3271/head
authorVictor Julien <victor@inliniac.net>
Mon, 5 Mar 2018 17:37:17 +0000 (18:37 +0100)
committerVictor Julien <victor@inliniac.net>
Mon, 5 Mar 2018 17:37:17 +0000 (18:37 +0100)
src/util-profiling-prefilter.c

index 2ae498557f69d3de9280f6a1e4a0abe38d03bfe5..cb5e34e35339acfae507e1ffb3f844fd8122b82b 100644 (file)
@@ -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);
 }