17 #ifndef HH_SENF_Utils_Logger_Levels_ 18 #define HH_SENF_Utils_Logger_Levels_ 1 71 struct VERBOSE :
public detail::LevelBase {
static unsigned const value = 1; };
75 struct NOTICE :
public detail::LevelBase {
static unsigned const value = 2; };
79 struct MESSAGE :
public detail::LevelBase {
static unsigned const value = 3; };
83 struct IMPORTANT :
public detail::LevelBase {
static unsigned const value = 4; };
87 struct CRITICAL :
public detail::LevelBase {
static unsigned const value = 5; };
91 struct FATAL :
public detail::LevelBase {
static unsigned const value = 6; };
95 struct DISABLED :
public detail::LevelBase {
static unsigned const value = 7; };
99 struct NONE :
public detail::LevelBase {
static unsigned const value = 0; };
103 static char const *
const LEVELNAMES[8] = {
104 "NONE",
"VERBOSE",
"NOTICE",
"MESSAGE",
"IMPORTANT",
"CRITICAL",
"FATAL",
"DISABLED" };
static unsigned const value