Lines Matching refs:logLevel
73 void LogToDmesg(InitLogLevel logLevel, const char *tag, const char *info) in LogToDmesg() argument
86 LOG_KLEVEL_STR[logLevel], getpid(), tag, LOG_LEVEL_STR[logLevel], info) == -1) { in LogToDmesg()
103 static void PrintLog(InitLogLevel logLevel, unsigned int domain, const char *tag, const char *logIn… in PrintLog() argument
107 (void)HiLogPrint(INIT_LOG_INIT, LOG_LEVEL[logLevel], domain, tag, "%s", logInfo); in PrintLog()
110 LogToDmesg(logLevel, tag, logInfo); in PrintLog()
114 HiLogBasePrint(LOG_CORE, LOG_LEVEL[logLevel], domain, tag, "%{public}s", logInfo); in PrintLog()
121 static void PrintLogFmt(int logLevel, unsigned int domain, const char *tag, const char *fmt, va_lis… in PrintLogFmt() argument
128 PrintLog((InitLogLevel)logLevel, domain, tag, tmpFmt); in PrintLogFmt()
131 INIT_LOCAL_API void InitLog(int logLevel, unsigned int domain, const char *tag, const char *fmt, va… in InitLog() argument
133 if ((int)g_logLevel > logLevel) { in InitLog()
136 PrintLogFmt((InitLogLevel)logLevel, domain, tag, fmt, vargs); in InitLog()