|
| 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 (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for TRACE message More...
|
|
template<typename... Args> |
void | debug (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for DEBUG message More...
|
|
template<typename... Args> |
void | info (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for INFO message More...
|
|
template<typename... Args> |
void | notice (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for INFO message, DEPRECATED More...
|
|
template<typename... Args> |
void | warn (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for WARN message More...
|
|
template<typename... Args> |
void | error (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for ERROR message More...
|
|
template<typename... Args> |
void | crit (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for CRITICAL message More...
|
|
template<typename... Args> |
void | alert (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for CRITICAL message, DEPRECATED More...
|
|
template<typename... Args> |
void | fatal (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for CRITICAL message, DEPRECATED More...
|
|
template<typename... Args> |
void | emerg (format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for CRITICAL message, DEPRECATED More...
|
|
template<typename... Args> |
void | log (spdlog::level::level_enum level, format_string_t< Args... > msg, Args &&... args) |
| inline function, wrapper for logging with ad-hoc adjustable level 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