From d5590962ff8d1cdaefec86868aea8849f173324b Mon Sep 17 00:00:00 2001 From: William Metcalf Date: Tue, 22 Jun 2010 07:22:21 -0500 Subject: [PATCH] change LogInfo to LogDebug for icmp seq matches --- src/detect-icmp-seq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect-icmp-seq.c b/src/detect-icmp-seq.c index 4f5cf0a985..d01f0f76af 100644 --- a/src/detect-icmp-seq.c +++ b/src/detect-icmp-seq.c @@ -93,7 +93,7 @@ int DetectIcmpSeqMatch (ThreadVars *t, DetectEngineThreadCtx *det_ctx, Packet *p DetectIcmpSeqData *iseq = (DetectIcmpSeqData *)m->ctx; if (PKT_IS_ICMPV4(p)) { - SCLogInfo("ICMPV4_GET_SEQ(p) %"PRIu16" (network byte order), " + SCLogDebug("ICMPV4_GET_SEQ(p) %"PRIu16" (network byte order), " "%"PRIu16" (host byte order)", ICMPV4_GET_SEQ(p), ntohs(ICMPV4_GET_SEQ(p)));