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)));