From d776e78ab0366d6749077e83c1b2b2a94ff62680 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Thu, 1 Oct 2020 09:42:22 +0200 Subject: [PATCH] Fix extra character in logs output --- jf-udp-recv/src/FrameStats.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jf-udp-recv/src/FrameStats.cpp b/jf-udp-recv/src/FrameStats.cpp index d25493a..92815cb 100644 --- a/jf-udp-recv/src/FrameStats.cpp +++ b/jf-udp-recv/src/FrameStats.cpp @@ -53,11 +53,10 @@ void FrameStats::print_stats() cout << ",detector_name=" << detector_name_; cout << ",module_name=M" << module_id_; cout << " "; - cout << ",n_missed_packets=" << n_missed_packets_ << "i"; + cout << "n_missed_packets=" << n_missed_packets_ << "i"; cout << ",n_corrupted_frames=" << n_corrupted_frames_ << "i"; cout << ",repetition_rate=" << rep_rate << "i"; cout << " "; cout << timestamp; - cout << endl; }