profiling: suppress debug statements

pull/3271/head
Victor Julien 7 years ago
parent eb12001c82
commit 04e87e1a9f

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

Loading…
Cancel
Save