11 #ifndef flatlogs_logPriority_hpp 12 #define flatlogs_logPriority_hpp 14 #include <mx/ioutils/stringUtils.hpp> 124 s.erase(std::remove_if(s.begin(), s.end(), ::isspace), s.end());
136 for(
size_t i=0; i< s.size(); ++i) s[i] = ::toupper(s[i]);
166 if( s[1] ==
'B' && s[2] ==
'G' )
203 #endif //flatlogs_logPriority_hpp std::string priorityString(logPrioT &prio)
Get the string representation of a log priority.
static constexpr logPrioT LOG_INFO
Informational. The info log level is the lowest level recorded during normal operations.
static constexpr logPrioT LOG_WARNING
A condition has occurred which may become an error, but the process continues.
static constexpr logPrioT LOG_ERROR
An error has occured which the software will attempt to correct.
static constexpr logPrioT LOG_DEBUG2
Used for debugging, providing a 2nd level.
logPrioT logLevelFromString(const std::string &str)
Get the log priority from a string, which might have the number or the name.
static constexpr logPrioT LOG_UNKNOWN
Used to denote an unkown log type for internal error handling.
int8_t logPrioT
The type of the log priority code.
static constexpr logPrioT LOG_ALERT
This should only be used if some action is required by operators to keep the system safe...
static constexpr logPrioT LOG_EMERGENCY
Normal operations of the entire system should be shut down immediately.
Type definitions for the flatlogs format.
static constexpr logPrioT LOG_CRITICAL
The process can not continue and will shut down (fatal)
static constexpr logPrioT LOG_DEFAULT
Used to denote "use the default level for this log type".
static constexpr logPrioT LOG_DEBUG
Used for debugging.
static constexpr logPrioT LOG_NOTICE
A normal but significant condition.