Changeset 189 in ntrip


Ignore:
Timestamp:
Sep 24, 2006, 6:03:06 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncapp.cpp

    r172 r189  
    6464
    6565  if (_logStream) {
     66    *_logStream << QTime::currentTime().toString("hh:mm::ss ").toAscii().data();
    6667    *_logStream << msg.data() << endl;
    6768    _logStream->flush();
  • trunk/BNC/bncwindow.cpp

    r188 r189  
    451451  const int maxBufferSize = 10000;
    452452 
    453   QString txt = _log->toPlainText() + "\n" + msg;
     453  QString txt = _log->toPlainText() + "\n" +
     454     QTime::currentTime().toString("hh:mm:ss ") + msg;
    454455  _log->clear();
    455456  _log->append(txt.right(maxBufferSize));
Note: See TracChangeset for help on using the changeset viewer.