Home
last modified time | relevance | path

Searched refs:PrintLog (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/toolchain/inspector/
Dlog_wrapper.h56 static void PrintLog(LogLevel level, const char* fmt, ...);
69 #define LOGF(fmt, ...) StdLog::PrintLog(LogLevel::FATAL, fmt, ##__VA_ARGS__)
70 #define LOGE(fmt, ...) StdLog::PrintLog(LogLevel::ERROR, fmt, ##__VA_ARGS__)
71 #define LOGW(fmt, ...) StdLog::PrintLog(LogLevel::WARN, fmt, ##__VA_ARGS__)
72 #define LOGI(fmt, ...) StdLog::PrintLog(LogLevel::INFO, fmt, ##__VA_ARGS__)
73 #define LOGD(fmt, ...) StdLog::PrintLog(LogLevel::DEBUG, fmt, ##__VA_ARGS__)
Dlog_wrapper.cpp44 void StdLog::PrintLog(LogLevel level, const char* fmt, ...) in PrintLog() function in OHOS::ArkCompiler::Toolchain::StdLog
55 void StdLog::PrintLog(LogLevel level, const char* fmt, ...) in PrintLog() function in OHOS::ArkCompiler::Toolchain::StdLog