Index: trunk/BNC/src/bnccore.cpp
===================================================================
--- trunk/BNC/src/bnccore.cpp	(revision 9766)
+++ trunk/BNC/src/bnccore.cpp	(revision 9767)
@@ -202,20 +202,18 @@
   t_irc ircPut = _ephUser.putNewEph(eph, true);
 #ifdef BNC_DEBUG_BCEP
-  if      (eph->checkState() == t_eph::bad) {
+  if (eph->checkState() == t_eph::unhealthy) {
+    messagePrivate(QString("%1: UNHEALTHY %2:%3")
+                   .arg(eph->receptStaID())
+                   .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0))
+                   .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 99.0)).toLatin1());
+  }
+  else if (eph->checkState() == t_eph::bad) {
     messagePrivate(QString("%1: WRONG %2:%3")
                    .arg(eph->receptStaID())
                    .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0))
                    .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 99.0)).toLatin1());
-    return failure;
   }
   else if (eph->checkState() == t_eph::outdated) {
     messagePrivate(QString("%1: OUTDATED %2:%3")
-                   .arg(eph->receptStaID())
-                   .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0))
-                   .arg(eph->rinexDateStr(eph->TOC(), eph->prn(), 99.0)).toLatin1());
-    return failure;
-  }
-  else if (eph->checkState() == t_eph::unhealthy) {
-    messagePrivate(QString("%1: UNHEALTHY %2:%3")
                    .arg(eph->receptStaID())
                    .arg(eph->navTypeString(eph->navType(), eph->prn(), 99.0))
Index: trunk/BNC/src/bncephuser.cpp
===================================================================
--- trunk/BNC/src/bncephuser.cpp	(revision 9766)
+++ trunk/BNC/src/bncephuser.cpp	(revision 9767)
@@ -195,5 +195,5 @@
   if (eph->isUnhealthy()) {
     eph->setCheckState(t_eph::unhealthy);
-    return;
+    //return;
   }
 
