|
| GLogger (GOptions *gopts, std::string vname) |
| Constructs a GLogger instance. More...
|
|
| GLogger ()=default |
|
| ~GLogger () |
|
template<typename... Args> |
void | debug (debug_type type, Args &&... args) const |
| Logs a debug message if the debug level is nonzero. More...
|
|
template<typename... Args> |
void | info (int level, Args &&... args) const |
| Logs an info message, conditionally based on verbosity level. More...
|
|
template<typename... Args> |
void | info (Args &&... args) const |
| Overloaded version of info() with default level = 0. More...
|
|
template<typename... Args> |
void | warning (Args &&... args) const |
| Logs a warning message. More...
|
|
template<typename... Args> |
void | error (int exit_code, Args &&... args) const |
| Logs an error message and exits the application. More...
|
|
template<typename... Args> |
void | critical (Args &&... args) const |
| Logs a critical message. Always printed. More...
|
|
GLogger manages output messages categorized as debug, info, warning, error, and critical. It allows conditional printing based on verbosity and debug flags, supports colored output, and automatically adds a counter to each message.
Definition at line 32 of file glogger.h.