Browse Source

Merge pull request #6416 from DonLakeFlyer/DebugLog

Remove debug logging
QGC4.4
Don Gagne 7 years ago committed by GitHub
parent
commit
8176dd377f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/comm/LogReplayLink.cc

4
src/comm/LogReplayLink.cc

@ -370,10 +370,6 @@ void LogReplayLink::_readNextLogEntry(void) @@ -370,10 +370,6 @@ void LogReplayLink::_readNextLogEntry(void)
emit currentLogTimeSecs((_logCurrentTimeUSecs - _logStartTimeUSecs) / 1000000);
if (timeToNextExecutionMSecs == 0 || timeToNextExecutionMSecs > 100) {
qDebug() << timeToNextExecutionMSecs << _logCurrentTimeUSecs;
}
// And schedule the next execution of this function.
_readTickTimer.start(timeToNextExecutionMSecs);
}

Loading…
Cancel
Save