class utils::Logger

Overview

Class for log initialization. More…

#include <Logger.h>

class Logger {
public:
    // construction

    Logger(const std::shared_ptr<LogWriter> log = nullptr);

protected:
    // fields

    const std::shared_ptr<LogWriter> log_;
};

Detailed Documentation

Class for log initialization.

See LogEntry, LogReader and LogWriter.