Lines Matching defs:logLevel
59 void SetLogLevel(const uint8_t logLevel)
61 g_logLevel = logLevel;
85 uint8_t logLevel = static_cast<uint8_t>(atoi(env));
86 if (logLevel < 0 || logLevel > LOG_LAST) {
87 WRITE_LOG(LOG_WARN, "OHOS_HDC_LOG_LEVEL %d is not in (0, 6] range", logLevel);
89 return logLevel;
111 void GetLogLevelAndTime(uint8_t logLevel, string &logLevelString, string &timeString)
117 switch (logLevel) {
580 void PrintLogEx(const char *functionName, int line, uint8_t logLevel, const char *msg, ...)
582 if (logLevel > g_logLevel) {
598 switch (static_cast<int>(logLevel)) {
629 GetLogLevelAndTime(logLevel, logLevelString, timeString);
645 void PrintLogEx(const char *functionName, int line, uint8_t logLevel, char *msg, ...)