Lines Matching refs:level
29 Level level = Level::ERROR;
33 level = Level::INFO;
36 level = Level::WARN;
39 level = Level::ERROR;
43 level = Level::FATAL;
47 level = Level::DEBUG;
51 return level;
56 for (int32_t level = LogLevel::LOG_LEVEL_MIN; level <= LogLevel::LOG_LEVEL_MAX; level++) {
57 if (HiLogIsLoggable(LOG_DOMAIN, LOG_TAG, static_cast<LogLevel>(level))) {
58 return static_cast<LogLevel>(level);
69 Level Log::ConvertFromRuntime(LOG_LEVEL level)
72 switch (level) {
99 std::string Log::LevelToString(Level level)
102 switch (level) {
124 void Log::SetLogLevelFromString(const std::string& level)
126 if (level == "fatal") {
129 if (level == "error") {
132 if (level == "warning") {
135 if (level == "info") {
138 if (level == "debug") {
141 if (level == "verbose") {
197 int32_t Log::PrintLogger(int32_t, int32_t level, const char *, const char *, const char *message)
199 switch (level) {