aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/suricata/src/detect-engine-threshold.c
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/suricata/src/detect-engine-threshold.c')
-rw-r--r--framework/src/suricata/src/detect-engine-threshold.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/src/suricata/src/detect-engine-threshold.c b/framework/src/suricata/src/detect-engine-threshold.c
index 6c6d1371..2d37e55e 100644
--- a/framework/src/suricata/src/detect-engine-threshold.c
+++ b/framework/src/suricata/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 */