CCIMXDesktop
 
Loading...
Searching...
No Matches
ConsoleLogger.h
1#ifndef CONSOLELOGGER_H
2#define CONSOLELOGGER_H
3
4#include "DesktopLoggerBackends.h"
5
14public:
19 enum class ConsoleFormatStyle {
20 Plain,
22 };
23
29
33 ~ConsoleLogger() override = default;
34
39 bool postSelfStatus() override;
40};
41
42#endif // CONSOLELOGGER_H
A logger backend that outputs messages to the console.
Definition ConsoleLogger.h:13
bool postSelfStatus() override
Posts the current status of the logger to the console.
Definition ConsoleLogger.cpp:23
ConsoleFormatStyle
Defines the available formatting styles for console output.
Definition ConsoleLogger.h:19
~ConsoleLogger() override=default
Destructor (default implementation)
Base class for all desktop logger backend implementations.
Definition DesktopLoggerBackends.h:21