From 059b25b56474ffe3cc0f1811056a99ef321c75cb Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Wed, 26 Oct 2016 10:34:28 +0200 Subject: [PATCH] detect: suppress debug message for reloads --- src/detect-engine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/detect-engine.c b/src/detect-engine.c index 52bee574fe..d6584fb72c 100644 --- a/src/detect-engine.c +++ b/src/detect-engine.c @@ -502,8 +502,8 @@ static int DetectEngineReloadThreads(DetectEngineCtx *new_de_ctx) /* threads now all have new data, however they may not have started using * it and may still use the old data */ - SCLogInfo("Live rule swap has swapped %d old det_ctx's with new ones, " - "along with the new de_ctx", no_of_detect_tvs); + SCLogDebug("Live rule swap has swapped %d old det_ctx's with new ones, " + "along with the new de_ctx", no_of_detect_tvs); InjectPackets(detect_tvs, new_det_ctx, no_of_detect_tvs);