From: Victor Julien Date: Tue, 29 Sep 2015 20:07:57 +0000 (+0200) Subject: threshold: remove debug message from info loglevel X-Git-Tag: suricata-3.0RC1~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77302e5d51f8a0f8c4486a39a7b5c8bd243aa3d8;p=thirdparty%2Fsuricata.git threshold: remove debug message from info loglevel --- diff --git a/src/detect-engine-threshold.c b/src/detect-engine-threshold.c index 6c6d1371a8..2d37e55e7c 100644 --- a/src/detect-engine-threshold.c +++ b/src/detect-engine-threshold.c @@ -216,11 +216,11 @@ int ThresholdHandlePacketSuppress(Packet *p, DetectThresholdData *td, uint32_t s switch (td->track) { case TRACK_DST: m = DetectAddressLookupInHead(&td->addrs, &p->dst); - SCLogInfo("TRACK_DST"); + SCLogDebug("TRACK_DST"); break; case TRACK_SRC: m = DetectAddressLookupInHead(&td->addrs, &p->src); - SCLogInfo("TRACK_SRC"); + SCLogDebug("TRACK_SRC"); break; /* suppress if either src or dst is a match on the suppress * address list */