replay: ignore the ULogMessageType::INFO message

This got introduced the the addition of the perf counter to the log.

Fixes the error:
unknown log message type 73
This commit is contained in:
Beat Küng
2017-04-06 09:11:38 +02:00
committed by Lorenz Meier
parent c7d9a7a6d1
commit f179049e95
+1
View File
@@ -513,6 +513,7 @@ bool Replay::nextDataMessage(std::ifstream &file, Subscription &subscription, in
case (int)ULogMessageType::REMOVE_LOGGED_MSG: //skip these
case (int)ULogMessageType::PARAMETER:
case (int)ULogMessageType::DROPOUT:
case (int)ULogMessageType::INFO:
case (int)ULogMessageType::SYNC:
case (int)ULogMessageType::LOGGING:
file.seekg(message_header.msg_size, ios::cur);