Skip to content
Snippets Groups Projects
Commit f179049e authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

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
parent c7d9a7a6
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment