Contains a custom logging facility.
std::ostream & operator<<(std::ostream &os, LogLevel level)
Streaming operator for LogLevel.
LogLevel
Indicated which log messages should be forwarded to some sink.
@ LVL_DEBUG
Fine-grained informational events that are most useful to debug an application.
@ LVL_ERROR
Error events that might still allow the application to continue running.
@ LVL_WARN
Potentially harmful situations or undesired states.
@ LVL_FATAL
Severe error events that will presumably lead the application to terminate.
@ LVL_INFO
Highlight the progress of the application at coarse-grained level.
@ LVL_DEFAULT
Default log level.
@ LVL_TRACE
Finer-grained informational events than the DEBUG.
@ LVL_ALL
All log messages.