Lines Matching refs:Level

45     Level level = Level::LAST;
48 ASSERT_PRINT(level == Level::LAST, "There are conflicting logger options");
50 level = Level::FATAL;
52 ASSERT_PRINT(level == Level::LAST, "There are conflicting logger options");
54 level = Level::ERROR;
56 ASSERT_PRINT(level == Level::LAST, "There are conflicting logger options");
58 level = Level::WARNING;
60 ASSERT_PRINT(level == Level::LAST, "There are conflicting logger options");
62 level = Level::INFO;
64 ASSERT_PRINT(level == Level::LAST, "There are conflicting logger options");
66 level = Level::DEBUG;
68 ASSERT_PRINT(level == Level::LAST, "There are conflicting logger options");
95 bool Logger::IsMessageSuppressed([[maybe_unused]] Level level, [[maybe_unused]] Component component)
146 if (level_ == Level::FATAL) {
155 void Logger::Log(Level level, Component component, const std::string &str)
186 std::string GetPrefix(Logger::Level level, Logger::Component component)
194 void Logger::InitializeFileLogging(const std::string &log_file, Level level, const ComponentMask &component_mask,
211 logger->LogLineInternal(Level::ERROR, Component::COMMON, msg);
227 logger->LogLineInternal(Level::ERROR, Component::COMMON, msg);
233 void Logger::InitializeHiLogging(Level level, const ComponentMask &component_mask)
252 void Logger::InitializeStdLogging(Level level, const ComponentMask &component_mask)
270 void Logger::InitializeDummyLogging(Level level, const ComponentMask &component_mask)
338 void FileLogger::LogLineInternal(Level level, Component component, const std::string &str)
344 void FastFileLogger::LogLineInternal(Level level, Component component, const std::string &str)
351 void HiLogger::LogLineInternal(Level level, Component component, const std::string &str)
356 case Level::DEBUG:
359 case Level::INFO:
362 case Level::ERROR:
365 case Level::FATAL:
368 case Level::WARNING:
377 void StderrLogger::LogLineInternal(Level level, Component component, const std::string &str)