#include <logger.hpp>
|  | 
|  | logger_iface (void)=default | 
|  | ctor 
 | 
|  | 
| virtual | ~logger_iface (void)=default | 
|  | dtor 
 | 
|  | 
|  | logger_iface (const logger_iface &)=default | 
|  | copy ctor 
 | 
|  | 
| logger_iface & | operator= (const logger_iface &)=default | 
|  | assignment operator 
 | 
|  | 
| virtual void | debug (const std::string &msg, const std::string &file, std::size_t line)=0 | 
|  | 
| virtual void | info (const std::string &msg, const std::string &file, std::size_t line)=0 | 
|  | 
| virtual void | warn (const std::string &msg, const std::string &file, std::size_t line)=0 | 
|  | 
| virtual void | error (const std::string &msg, const std::string &file, std::size_t line)=0 | 
|  | 
logger_iface should be inherited by any class intended to be used for logging 
◆ debug()
  
  | 
        
          | virtual void tacopie::logger_iface::debug | ( | const std::string & | msg, |  
          |  |  | const std::string & | file, |  
          |  |  | std::size_t | line |  
          |  | ) |  |  |  | pure virtual | 
 
debug logging
- Parameters
- 
  
    | msg | message to be logged |  | file | file from which the message is coming |  | line | line in the file of the message |  
 
Implemented in tacopie::logger.
 
 
◆ error()
  
  | 
        
          | virtual void tacopie::logger_iface::error | ( | const std::string & | msg, |  
          |  |  | const std::string & | file, |  
          |  |  | std::size_t | line |  
          |  | ) |  |  |  | pure virtual | 
 
error logging
- Parameters
- 
  
    | msg | message to be logged |  | file | file from which the message is coming |  | line | line in the file of the message |  
 
Implemented in tacopie::logger.
 
 
◆ info()
  
  | 
        
          | virtual void tacopie::logger_iface::info | ( | const std::string & | msg, |  
          |  |  | const std::string & | file, |  
          |  |  | std::size_t | line |  
          |  | ) |  |  |  | pure virtual | 
 
info logging
- Parameters
- 
  
    | msg | message to be logged |  | file | file from which the message is coming |  | line | line in the file of the message |  
 
Implemented in tacopie::logger.
 
 
◆ warn()
  
  | 
        
          | virtual void tacopie::logger_iface::warn | ( | const std::string & | msg, |  
          |  |  | const std::string & | file, |  
          |  |  | std::size_t | line |  
          |  | ) |  |  |  | pure virtual | 
 
warn logging
- Parameters
- 
  
    | msg | message to be logged |  | file | file from which the message is coming |  | line | line in the file of the message |  
 
Implemented in tacopie::logger.
 
 
The documentation for this class was generated from the following file: