Index: trunk/BNC/bncmodel.cpp
===================================================================
--- trunk/BNC/bncmodel.cpp	(revision 3412)
+++ trunk/BNC/bncmodel.cpp	(revision 3413)
@@ -1288,4 +1288,5 @@
       if (lastOutlierPrn.isEmpty()) {
         if (!_usePhase || iPhase == 1) {
+
           QVectorIterator<bncParam*> itPar(_params);
           while (itPar.hasNext()) {
@@ -1293,5 +1294,22 @@
             par->xx += dx(par->index);
           }
+
+          if (_outlierGPS.size() > 0 || _outlierGlo.size() > 0) {
+            _log += "Neglected PRNs: ";
+            QStringListIterator itGPS(_outlierGPS);
+            while (itGPS.hasNext()) {
+              QString prn = itGPS.next();
+              _log += prn + ' ';
+            }
+            QStringListIterator itGlo(_outlierGlo);
+            while (itGlo.hasNext()) {
+              QString prn = itGlo.next();
+              _log += prn + ' ';
+            }
+          }
+          _log += '\n';
+
           _log += strResCode + strResPhase;
+
           return success;
         }
