Index: trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 6306)
+++ trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 6307)
@@ -804,5 +804,14 @@
     *_log << prefixSys << "Observations          : " << numObs << endl
           << prefixSys << "Slips (file+found)    : " << numSlipsFlagged << " + " << numSlipsFound << endl
-          << prefixSys << "Gaps                  : " << numGaps << endl;
+          << prefixSys << "Gaps                  : " << numGaps << endl
+          << prefixSys << "Tracking Modes        : " << frqMap.size() << endl;
+    QMapIterator<QString, QVector<const t_qcFrqSum*> > itFrq(frqMap); 
+    while (itFrq.hasNext()) {
+      itFrq.next();
+      const QString&                   frqType  = itFrq.key();
+      const QVector<const t_qcFrqSum*> qcFrqVec = itFrq.value();
+      QString prefixFrq = QString("  ") + frqType + QString(": ");
+      *_log << prefixSys << prefixFrq << endl;
+    }
   }
 
