25 #ifndef LOG4CPP_LOGLEVELS_H 26 #define LOG4CPP_LOGLEVELS_H 38 explicit ModuleId(int32_t level) : value(level)
49 explicit LogLevel(int32_t level) : value(level)
78 explicit LogLevels(int32_t levels) : levels(levels)
86 inline bool is_set(
const LogLevel& level)
const 88 return (level.value & levels) != 0;
93 this->levels |= other.levels;
99 return LogLevels(this->levels | other.levels);
102 inline int32_t get_value()
const 113 #endif //LOG4CPP_LOGLEVELS_H
log4cpp header-only library namespace
const log4cpp::LogLevel info
Information logs.
const log4cpp::LogLevel debug
Debug logs.
const log4cpp::LogLevel warn
Warning logs.
const log4cpp::LogLevel error
Error logs.