commented out 'cerr logging' of stats data
mtk [Tue, 29 Sep 2009 17:52:38 +0000 (17:52 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1465 270642c3-0616-0410-b53a-bc976706d245

senf/Utils/Statistics.cc

index 4351cca..6e6eb18 100644 (file)
@@ -305,8 +305,8 @@ prefix_ void senf::Collector::enter(float min, float avg, float max, float dev)
     accSumSq_ += avg*avg + dev*dev;
     if (min < accMin_) accMin_ = min;
     if (max > accMax_) accMax_ = max;
-    std::cerr << "! " << i_ << ' ' << avg << ' ' << dev << ' ' << accSum_ << ' ' << accSumSq_ 
-              << std::endl;
+//    std::cerr << "! " << i_ << ' ' << avg << ' ' << dev << ' ' << accSum_ << ' ' << accSumSq_ 
+//              << std::endl;
     if (++i_ >= rank_) {
         float accAvg (accSum_ / i_);
         float accDev (std::sqrt(accSumSq_ / i_ - accAvg*accAvg));