Index: trunk/BNC/src/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/src/combination/bnccomb.cpp	(revision 10479)
+++ trunk/BNC/src/combination/bnccomb.cpp	(revision 10481)
@@ -726,5 +726,7 @@
     t_eph* ephPrev = _ephUser.ephPrev(prn);
     if (ephLast == 0) {
+#ifdef BNC_DEBUG_CMB
       emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1(), true);
+#endif
       delete _newCorr; _newCorr = 0;
       continue;
@@ -750,6 +752,8 @@
       }
       else {
+#ifdef BNC_DEBUG_CMB
         emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1() +
                         QString(" with IOD %1").arg(_newCorr->_iod).toLatin1(), true);
+#endif
         delete _newCorr; _newCorr = 0;
         continue;
@@ -824,5 +828,4 @@
     processSystem(epoTime, sys, out);
     _buffer.remove(sys);
-    //emit newMessage(_log, false);
     if (_logFile) {
       _logFile->write(epoTime.gpsw(),epoTime.gpssec(), QString(_log));
@@ -833,6 +836,9 @@
 void bncComb::processSystem(bncTime epoTime, char sys, QTextStream& out) {
 
-  out << "\n" <<           "Combination: " << sys << "\n"
-      << "--------------------------------" << "\n";
+  out << "\n"
+      << epoTime.datestr().c_str()    << " "
+      << epoTime.timestr().c_str()    << " "
+      << "Combination: " << sys << "\n"
+      << "--------------------------------------" << "\n";
 
   // Observation Statistics
@@ -853,5 +859,7 @@
       }
     }
-    out << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n";
+    out << epoTime.datestr().c_str()    << " "
+        << epoTime.timestr().c_str()    << " "
+        << AC->name.toLatin1().data() << ": " << AC->numObs[sys] << "\n";
   }
 
@@ -876,9 +884,9 @@
         cmbAC* AC = icAC.next();
         if (AC->numObs[sys] > 0) {
-          out << "Switching Master AC "
+          out <<  epoTime.datestr().c_str()   << " "
+              << epoTime.timestr().c_str()    << " "
+              << "Switching Master AC "
               << _masterOrbitAC[sys].toLatin1().data() << " --> "
-              << AC->name.toLatin1().data()   << " "
-              << epoTime.datestr().c_str()    << " "
-              << epoTime.timestr().c_str()    << "\n";
+              << AC->name.toLatin1().data()   << "\n";
           _masterOrbitAC[sys] = AC->name;
           _masterIsAPC[sys]   = AC->isAPC;
