diff --git a/src/io/pidiagnostics.cpp b/src/io/pidiagnostics.cpp index 8c690ba3..84346ce4 100755 --- a/src/io/pidiagnostics.cpp +++ b/src/io/pidiagnostics.cpp @@ -110,7 +110,7 @@ void PIDiagnostics::tick(void * , int ) { bytes_recv_sec = ullong(double(recv.bytes_ok) / itr); bytes_send_sec = ullong(double(send.bytes_ok) / its); immediate_freq = double(history_rec.front().cnt_ok) / hz; - piCoutObj << "tick" << recv.cnt_ok << send.cnt_ok; +// piCoutObj << "tick" << recv.cnt_ok << send.cnt_ok; // speedRecv = PIString::readableSize(ullong(double(history_rec.front().bytes_ok) / hz)) + "/s"; // speedSend = PIString::readableSize(ullong(double(history_send.front().bytes_ok) / hz)) + "/s"; speedRecv = PIString::readableSize(bytes_recv_sec) + "/s"; @@ -156,7 +156,7 @@ PIDiagnostics::Entry PIDiagnostics::calcHistory(PIQueue & hist, int & cnt if (!hist[i].empty) cnt++; } e.empty = false; - piCoutObj << hist.size() << cnt; +// piCoutObj << hist.size() << cnt; return e; }