From bfa8eb902b0cec4e2c8c2ec1a40982b87893d6ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=8B=D1=87=D0=BA=D0=BE=D0=B2=20=D0=90=D0=BD=D0=B4?= =?UTF-8?q?=D1=80=D0=B5=D0=B9?= Date: Fri, 15 Apr 2016 13:02:45 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/pip@191 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- src/io/pidiagnostics.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }