|
| logger (const std::string &logger_name) |
| constructor Provide name of logger to associate with this class More...
|
|
| ~logger ()=default |
| Destructor. More...
|
|
void | set_level (const std::string &level) |
| inline function, wrapper to set the logger level More...
|
|
void | set_level (const log_level level) |
|
void | get_level (std::string &level) const |
| inline function, wrapper to get the logger level More...
|
|
const std::string | get_string_level () const |
|
log_level | get_level () const |
|
const std::string & | name () const |
|
void | set_name (const std::string &name) |
|
template<typename... Args> |
void | trace (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for TRACE message More...
|
|
template<typename... Args> |
void | debug (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for DEBUG message More...
|
|
template<typename... Args> |
void | info (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for INFO message More...
|
|
template<typename... Args> |
void | notice (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for INFO message, DEPRECATED More...
|
|
template<typename... Args> |
void | warn (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for WARN message More...
|
|
template<typename... Args> |
void | error (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for ERROR message More...
|
|
template<typename... Args> |
void | crit (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for CRITICAL message More...
|
|
template<typename... Args> |
void | alert (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for CRITICAL message, DEPRECATED More...
|
|
template<typename... Args> |
void | fatal (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for CRITICAL message, DEPRECATED More...
|
|
template<typename... Args> |
void | emerg (const spdlog::string_view_t &msg, const Args &... args) |
| inline function, wrapper for CRITICAL message, DEPRECATED More...
|
|
GR_LOG macros.
These macros wrap the standard LOG4CPP_LEVEL macros. The available macros are: LOG_DEBUG LOG_INFO LOG_WARN LOG_TRACE LOG_ERROR LOG_ALERT LOG_CRIT LOG_FATAL LOG_EMERG
Logger class for referencing loggers in python. Not needed in C++ (use macros) Wraps and manipulates loggers for python as python has no macros