Index: trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4688)
+++ trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4689)
@@ -292,7 +292,5 @@
   emit dspAvailPlot(obsFile->fileName(), title);
 
-  if (_log) {
-    _log->flush();
-  }
+  printReport();
 }
 
@@ -692,2 +690,19 @@
   return sqrt(QQ.trace());
 }
+
+// Finish the report
+////////////////////////////////////////////////////////////////////////////
+void t_reqcAnalyze::printReport() {
+
+  if (!_log) {
+    return;
+  }
+
+  *_log << "Marker name: " << _obsStat._markerName   << endl 
+        << "Receiver:    " << _obsStat._receiverType << endl
+        << "Antenna:     " << _obsStat._antennaName  << endl
+        << "Start time:  " << _obsStat._startTime.datestr().c_str() << ' '
+                           << _obsStat._startTime.timestr().c_str() << endl;
+
+  _log->flush();
+}
Index: trunk/BNC/src/rinex/reqcanalyze.h
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.h	(revision 4688)
+++ trunk/BNC/src/rinex/reqcanalyze.h	(revision 4689)
@@ -160,4 +160,5 @@
                       const ColumnVector& xyzSta);
   double cmpDOP(const ColumnVector& xyzSta) const;
+  void printReport();
 
   QString                    _logFileName;
