struct mola::ConsoleLogEntry

Overview

One captured log line, tagged with its originating module and severity.

#include <MolaVizImGuiCore.h>

struct ConsoleLogEntry
{
    // fields

    mrpt::Clock::time_point timestamp;
    mrpt::system::VerbosityLevel level = mrpt::system::LVL_INFO;
    std::string source;
    std::string text;
};