Unverified Commit 9a3ff66d authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #5975 from DonLakeFlyer/DebugLog

Fix logging
parents 35410336 836a6662
......@@ -263,7 +263,7 @@ bool PlanManager::_checkForExpectedAck(AckType_t receivedAck)
} else {
// We just warn in this case, this could be crap left over from a previous transaction or the vehicle going bonkers.
// Whatever it is we let the ack timeout handle any error output to the user.
qCDebug(PlanManagerLog) << QString("Out of sequence ack expected:received %1:%2 %1").arg(_ackTypeToString(_expectedAck)).arg(_ackTypeToString(receivedAck)).arg(_planTypeString());
qCDebug(PlanManagerLog) << QString("Out of sequence ack %1 expected:received %2:%3").arg(_planTypeString().arg(_ackTypeToString(_expectedAck)).arg(_ackTypeToString(receivedAck)));
}
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment