Index: /trunk/BNC/src/PPP/pppClient.cpp
===================================================================
--- /trunk/BNC/src/PPP/pppClient.cpp	(revision 5772)
+++ /trunk/BNC/src/PPP/pppClient.cpp	(revision 5773)
@@ -114,10 +114,13 @@
   if      (ephGPS) {
     _ephPool->putEphemeris(new t_ephGPS(*ephGPS));
+    LOG << OPT->_roverName <<  " putEphemeris GPS" << endl;
   }
   else if (ephGlo) {
     _ephPool->putEphemeris(new t_ephGlo(*ephGlo));
+    LOG << OPT->_roverName <<  " putEphemeirs Glo" << endl;
   }
   else if (ephGal) {
     _ephPool->putEphemeris(new t_ephGal(*ephGal));
+    LOG << OPT->_roverName <<  " putEphemeris Gal" << endl;
   }
 }
@@ -129,4 +132,5 @@
     _ephPool->putOrbCorrection(new t_orbCorr(corr[ii]));
   }
+  LOG << OPT->_roverName <<  " putOrbCorrections " << corr.size() << endl;
 }
 
@@ -137,4 +141,5 @@
     _ephPool->putClkCorrection(new t_clkCorr(corr[ii]));
   }
+  LOG << OPT->_roverName <<  " putClkCorrections " << corr.size() << endl;
 }
 
@@ -145,4 +150,5 @@
     _obsPool->putBiases(new t_satBias(biases[ii]));
   }
+  LOG << OPT->_roverName <<  " putBiases " << biases.size() << endl;
 }
 
