Interface defining logging capabilities for the library. More...
#include <ilogger.hpp>
Public Member Functions | |
virtual void | debug (std::string_view msg)=0 |
Log a message with DEBUG (or equivalent) level. | |
virtual void | info (std::string_view msg)=0 |
Log a message with INFO (or equivalent) level. | |
virtual void | warning (std::string_view msg)=0 |
Log a message with WARNING (or equivalent) level. | |
virtual void | error (std::string_view msg)=0 |
Log a message with ERROR (or equivalent) level. | |
virtual void | critical (std::string_view msg)=0 |
Log a message with CRITICAL (or equivalent) level. | |
Interface defining logging capabilities for the library.
The purpose of this library is to allow kouta elements (or any other) to use an application-specific logger. The idea is to have an intermediate object implement this interface so that messages generated by the library can be logged as part of the application with the appropriate levels.
Log a message with CRITICAL (or equivalent) level.
[in] | msg | Message to log. |
Log a message with DEBUG (or equivalent) level.
[in] | msg | Message to log. |
Log a message with ERROR (or equivalent) level.
[in] | msg | Message to log. |
Log a message with INFO (or equivalent) level.
[in] | msg | Message to log. |
Log a message with WARNING (or equivalent) level.
[in] | msg | Message to log. |