]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
threshold: remove debug message from info loglevel
authorVictor Julien <victor@inliniac.net>
Tue, 29 Sep 2015 20:07:57 +0000 (22:07 +0200)
committerVictor Julien <victor@inliniac.net>
Tue, 29 Sep 2015 20:08:06 +0000 (22:08 +0200)
src/detect-engine-threshold.c

index 6c6d1371a8d649c44eca412ab25d52914d5c992d..2d37e55e7c38683f6ba7329634dbe845ff79169d 100644 (file)
@@ -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 */