Index: trunk/BNC/src/bncephuser.cpp
===================================================================
--- trunk/BNC/src/bncephuser.cpp	(revision 9923)
+++ trunk/BNC/src/bncephuser.cpp	(revision 9924)
@@ -190,4 +190,5 @@
     return;
   }
+  cout << "\n" << eph->prn().toString().c_str() << " ";
 
   // Check whether the epoch is too far away the current time
@@ -195,5 +196,5 @@
   if (realTime) {
     if (outDatedBcep(eph)) {
-      eph->setCheckState(t_eph::outdated);
+      eph->setCheckState(t_eph::outdated); cout << " Outdated ";
       return;
     }
@@ -203,5 +204,5 @@
   // -------------------
   if (eph->isUnhealthy()) {
-    eph->setCheckState(t_eph::unhealthy);
+    eph->setCheckState(t_eph::unhealthy);cout << " Unhealthy ";
     return;
   }
@@ -212,5 +213,5 @@
   ColumnVector vv(3);
   if (eph->getCrd(eph->TOC(), xc, vv, false) != success) {
-    eph->setCheckState(t_eph::bad);
+    eph->setCheckState(t_eph::bad); cout << "eph->getCrd() != success: bad ";
     return;
   }
@@ -220,5 +221,5 @@
   const double MAXDIST = 6.e7;
   if (rr < MINDIST || rr > MAXDIST || std::isnan(rr)) {
-    eph->setCheckState(t_eph::bad);
+    eph->setCheckState(t_eph::bad); cout << " eph MIN/MAXDIST: bad ";
     return;
   }
@@ -243,5 +244,5 @@
     ColumnVector vvL(3);
     if (ephL->getCrd(eph->TOC(), xcL, vvL, false) != success) {
-      eph->setCheckState(t_eph::bad);
+      eph->setCheckState(t_eph::bad); cout << " ephL->getCrd()  != success: bad " ;
       return;
     }
