Kouta 0.1.0
A small asynchronous application framework based on Boost/Asio
 
Loading...
Searching...
No Matches
kouta::utils::ILogger Class Referenceabstract

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.
 

Detailed Description

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.

Member Function Documentation

◆ critical()

virtual void kouta::utils::ILogger::critical ( std::string_view  msg)
pure virtual

Log a message with CRITICAL (or equivalent) level.

Parameters
[in]msgMessage to log.

◆ debug()

virtual void kouta::utils::ILogger::debug ( std::string_view  msg)
pure virtual

Log a message with DEBUG (or equivalent) level.

Parameters
[in]msgMessage to log.

◆ error()

virtual void kouta::utils::ILogger::error ( std::string_view  msg)
pure virtual

Log a message with ERROR (or equivalent) level.

Parameters
[in]msgMessage to log.

◆ info()

virtual void kouta::utils::ILogger::info ( std::string_view  msg)
pure virtual

Log a message with INFO (or equivalent) level.

Parameters
[in]msgMessage to log.

◆ warning()

virtual void kouta::utils::ILogger::warning ( std::string_view  msg)
pure virtual

Log a message with WARNING (or equivalent) level.

Parameters
[in]msgMessage to log.

The documentation for this class was generated from the following file: