#include "dummy_logger.hpp"
|
| using | Level = LogLevel |
| |
| virtual | ~Logger ()=default |
| |
| template<typename... Args> |
| void | trace (const std::string &format, const Args &... args) const |
| |
| template<typename... Args> |
| void | debug (const std::string &format, const Args &... args) const |
| |
| template<typename... Args> |
| void | info (const std::string &format, const Args &... args) const |
| |
| template<typename... Args> |
| void | warn (const std::string &format, const Args &... args) const |
| |
| template<typename... Args> |
| void | error (const std::string &format, const Args &... args) const |
| |
| template<typename... Args> |
| void | critical (const std::string &format, const Args &... args) const |
| |
| template<typename... Args> |
| void | log (Level level, const std::string &format, const Args &... args) const |
| |
◆ logInternal()
| void logger::DummyLogger::logInternal |
( |
Level |
level, |
|
|
const std::string & |
s |
|
) |
| const |
|
inlineoverrideprotectedvirtual |
◆ shouldLog()
| bool logger::DummyLogger::shouldLog |
( |
Level |
level | ) |
const |
|
inlineoverrideprotectedvirtual |
Whether the configured logging level is at least as verbose as the one given in parameter.
Implements logger::Logger.
The documentation for this class was generated from the following file: