Home | History | Annotate | Download | only in nanotool

Lines Matching refs:Log

28  * Prefer to use these macros instead of calling Log::Error, etc. directly, in
32 #define LOGE(fmt, ...) Log::Error(fmt, ##__VA_ARGS__)
33 #define LOGW(fmt, ...) Log::Warn(fmt, ##__VA_ARGS__)
34 #define LOGI(fmt, ...) Log::Info(fmt, ##__VA_ARGS__)
35 #define LOGD(fmt, ...) Log::Debug(fmt, ##__VA_ARGS__)
37 #define LOGD_BUF(buf, len) Log::DebugBuf((const uint8_t *) buf, len)
38 #define LOGD_VEC(vec) Log::DebugBuf(vec)
40 // Interface for a log output method
48 // Singleton used to log messages to an arbitrary output
49 class Log {
60 // Define the logging mechanism and minimum log level that will be printed