Index: trunk/BNC/src/PPP/pppEphPool.cpp
===================================================================
--- trunk/BNC/src/PPP/pppEphPool.cpp	(revision 6142)
+++ trunk/BNC/src/PPP/pppEphPool.cpp	(revision 6143)
@@ -81,5 +81,4 @@
 /////////////////////////////////////////////////////////////////////////////
 void t_pppEphPool::t_satEphPool::putOrbCorrection(t_orbCorr* corr) {
-  cout << "ORB: " << corr->_prn.toString() << ' ' << corr->IOD() << endl;
   for (unsigned ii = 0; ii < _ephs.size(); ii++) {
     t_eph* eph = _ephs[ii];
@@ -89,5 +88,4 @@
     }
   }
-  cout << "wrong" << endl;
   delete corr;
 }
@@ -96,15 +94,9 @@
 /////////////////////////////////////////////////////////////////////////////
 void t_pppEphPool::t_satEphPool::putClkCorrection(t_clkCorr* corr) {
-  cout << "CLK: " << corr->_prn.toString() << ' ' << corr->IOD() << ' ' << corr->_dClk << endl;
-  bool set = false;
   for (unsigned ii = 0; ii < _ephs.size(); ii++) {
     t_eph* eph = _ephs[ii];
     if (eph->IOD() == corr->IOD()) {
       eph->setClkCorr(corr); 
-      set = true;
     }
-  }
-  if (!set) {
-    cout << "wrong" << endl;
   }
   delete corr;
@@ -115,9 +107,7 @@
 t_irc t_pppEphPool::t_satEphPool::getCrd(const bncTime& tt, ColumnVector& xc,
                                            ColumnVector& vv) const {
-  cout << "getCrd " << endl;
   for (unsigned ii = 0; ii < _ephs.size(); ii++) {
     t_eph* eph = _ephs[ii];
     t_irc irc = eph->getCrd(tt, xc, vv, OPT->useOrbClkCorr());
-    cout << "getCrd " << eph->prn().toString() << ' ' << irc << endl;
     if (irc == success) {
       if (eph->prn().system() == 'R') {
Index: trunk/BNC/src/pppRun.cpp
===================================================================
--- trunk/BNC/src/pppRun.cpp	(revision 6142)
+++ trunk/BNC/src/pppRun.cpp	(revision 6143)
@@ -228,11 +228,7 @@
   // Process the oldest epochs
   // ------------------------
-  cout << "epoData " << _epoData.size() << endl;
-
   while (_epoData.size() && !waitForCorr(_epoData.front()->_time)) {
 
     const vector<t_satObs*>& satObs = _epoData.front()->_satObs;
-
-    cout << "satObs " << satObs.size() << endl;
 
     t_output output;
