41 #ifndef __BASE_LOGGING_HH__ 42 #define __BASE_LOGGING_HH__ 96 if (str.length() && str.back() !=
'\n' && str.back() !=
'\r')
103 template<
typename ...Args>
void 106 std::stringstream
ss;
108 print(loc, ss.str());
111 template<
typename ...Args>
void 114 print(loc, format.c_str(), args...);
125 virtual void log(
const Loc &loc, std::string
s) = 0;
132 #define base_message(logger, ...) \ 133 logger.print(::Logger::Loc(__FILE__, __LINE__), __VA_ARGS__) 143 #define base_message_once(...) do { \ 144 static bool once = false; \ 146 base_message(__VA_ARGS__); \ 151 #define exit_message(logger, ...) \ 153 base_message(logger, __VA_ARGS__); \ 154 logger.exit_helper(); \ 163 #define panic(...) exit_message(::Logger::getPanic(), __VA_ARGS__) 171 #define fatal(...) exit_message(::Logger::getFatal(), __VA_ARGS__) 181 #define panic_if(cond, ...) \ 184 panic("panic condition " # cond " occurred: %s", \ 185 csprintf(__VA_ARGS__)); \ 199 #define fatal_if(cond, ...) \ 202 fatal("fatal condition " # cond " occurred: %s", \ 203 csprintf(__VA_ARGS__)); \ 208 #define warn(...) base_message(::Logger::getWarn(), __VA_ARGS__) 209 #define inform(...) base_message(::Logger::getInfo(), __VA_ARGS__) 210 #define hack(...) base_message(::Logger::getHack(), __VA_ARGS__) 212 #define warn_once(...) base_message_once(::Logger::getWarn(), __VA_ARGS__) 213 #define inform_once(...) base_message_once(::Logger::getInfo(), __VA_ARGS__) 214 #define hack_once(...) base_message_once(::Logger::getHack(), __VA_ARGS__) 224 #define warn_if(cond, ...) \ 230 #define warn_if_once(cond, ...) \ 233 warn_once(__VA_ARGS__); \ 246 #define chatty_assert(cond, ...) 248 #define chatty_assert(cond, ...) \ 251 panic("assert(" # cond ") failed: %s", csprintf(__VA_ARGS__)); \ 254 #endif // __BASE_LOGGING_HH__
void ccprintf(cp::Print &print)
static Logger & getPanic()
static void setLevel(LogLevel ll)
Loc(const char *file, int line)
void exit_helper() M5_ATTR_NORETURN
Logger(const char *prefix)
static Logger & getInfo()
void print(const Loc &loc, const std::string &str)
static Logger & getWarn()
static Logger & getHack()
static Logger & getFatal()
Bitfield< 31, 29 > format
void print(const Loc &loc, const std::string &format, const Args &...args)
void print(const Loc &loc, const char *format, const Args &...args)
virtual void log(const Loc &loc, std::string s)=0