shared = confshared;
if (shared == 0) {
- if (!(de_ctx->flags & DE_QUIET)) {
- SCLogPerf("using unique mpm ctx' for %s", n->name);
- }
+ SCLogDebug("using unique mpm ctx' for %s", n->name);
n->sgh_mpm_context = MPM_CTX_FACTORY_UNIQUE_CONTEXT;
} else {
- if (!(de_ctx->flags & DE_QUIET)) {
- SCLogPerf("using shared mpm ctx' for %s", n->name);
- }
+ SCLogDebug("using shared mpm ctx' for %s", n->name);
n->sgh_mpm_context = MpmFactoryRegisterMpmCtxProfile(de_ctx, n->name, n->sm_list);
}
shared = confshared;
if (shared == 0) {
- if (!(de_ctx->flags & DE_QUIET)) {
- SCLogPerf("using unique mpm ctx' for %s", n->name);
- }
+ SCLogDebug("using unique mpm ctx' for %s", n->name);
n->sgh_mpm_context = MPM_CTX_FACTORY_UNIQUE_CONTEXT;
} else {
- if (!(de_ctx->flags & DE_QUIET)) {
- SCLogPerf("using shared mpm ctx' for %s", n->name);
- }
+ SCLogDebug("using shared mpm ctx' for %s", n->name);
n->sgh_mpm_context = MpmFactoryRegisterMpmCtxProfile(de_ctx, n->name, n->sm_list);
}
shared = confshared;
if (shared == 0) {
- if (!(de_ctx->flags & DE_QUIET)) {
- SCLogPerf("using unique mpm ctx' for %s", n->name);
- }
+ SCLogDebug("using unique mpm ctx' for %s", n->name);
n->sgh_mpm_context = MPM_CTX_FACTORY_UNIQUE_CONTEXT;
} else {
- if (!(de_ctx->flags & DE_QUIET)) {
- SCLogPerf("using shared mpm ctx' for %s", n->name);
- }
+ SCLogDebug("using shared mpm ctx' for %s", n->name);
n->sgh_mpm_context = MpmFactoryRegisterMpmCtxProfile(de_ctx, n->name, n->sm_list);
}
int32_t ctx;
if (shared == 0) {
ctx = MPM_CTX_FACTORY_UNIQUE_CONTEXT;
- SCLogPerf("using unique mpm ctx' for %s", name);
+ SCLogDebug("using unique mpm ctx' for %s", name);
} else {
ctx = MpmFactoryRegisterMpmCtxProfile(de_ctx, name, DETECT_SM_LIST_PMATCH);
- SCLogPerf("using shared mpm ctx' for %s", name);
+ SCLogDebug("using shared mpm ctx' for %s", name);
}
return ctx;
}