diff --git a/src/detect-engine.c b/src/detect-engine.c index 24385e0e9f..cf917ad346 100644 --- a/src/detect-engine.c +++ b/src/detect-engine.c @@ -839,9 +839,10 @@ static DetectEngineCtx *DetectEngineCtxInitReal(int minimal, const char *prefix) } de_ctx->mpm_matcher = PatternMatchDefaultMatcher(); - SCLogInfo("using MPM matcher: %s", mpm_table[de_ctx->mpm_matcher].name); de_ctx->spm_matcher = SinglePatternMatchDefaultMatcher(); - SCLogInfo("using SPM matcher: %s", spm_table[de_ctx->spm_matcher].name); + SCLogInfo("pattern matchers: MPM: %s, SPM: %s", + mpm_table[de_ctx->mpm_matcher].name, + spm_table[de_ctx->spm_matcher].name); de_ctx->spm_global_thread_ctx = SpmInitGlobalThreadCtx(de_ctx->spm_matcher); if (de_ctx->spm_global_thread_ctx == NULL) {