From 181400bfddd1763d31cf0aff73584e869bda8b7c Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Wed, 30 Nov 2022 16:14:11 +0100 Subject: [PATCH] pcap-file: output cleanups --- src/source-pcap-file.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/source-pcap-file.c b/src/source-pcap-file.c index 417196556d..97f424943e 100644 --- a/src/source-pcap-file.c +++ b/src/source-pcap-file.c @@ -387,12 +387,8 @@ void ReceivePcapFileThreadExitStats(ThreadVars *tv, void *data) SCLogInfo("1/%" PRIu64 "th of packets have an invalid checksum", chrate); } - SCLogNotice( - "Pcap-file module read %" PRIu64 " files, %" PRIu64 " packets, %" PRIu64 " bytes", - ptv->shared.files, - ptv->shared.pkts, - ptv->shared.bytes - ); + SCLogNotice("read %" PRIu64 " files, %" PRIu64 " packets, %" PRIu64 " bytes", + ptv->shared.files, ptv->shared.pkts, ptv->shared.bytes); } }