class ulog::LogHandler

Overview

Abstract class that can be inherited to create custom log message behavior. More…

#include <Ulog.h>

class LogHandler {
public:
    // methods

    virtual void AddMessage(ulog::Entry::Type type, ulog::Category categ, const std::string& msg, const std::string& caller) = 0;
};

Detailed Documentation

Abstract class that can be inherited to create custom log message behavior.

Methods

virtual void AddMessage(ulog::Entry::Type type, ulog::Category categ, const std::string& msg, const std::string& caller) = 0

Add message to the handler.