Searched refs:AccountLogLevel (Results 1 – 4 of 4) sorted by relevance
24 enum class AccountLogLevel { DEBUG = 0, INFO, WARN, ERROR, FATAL }; enum29 static bool JudgeLevel(const AccountLogLevel &level);31 static void SetLogLevel(const AccountLogLevel &level) in SetLogLevel()36 static const AccountLogLevel &GetLogLevel() in GetLogLevel()44 static AccountLogLevel level_;
21 AccountLogLevel AccountLogWrapper::level_ = AccountLogLevel::INFO;23 bool AccountLogWrapper::JudgeLevel(const AccountLogLevel& level) in JudgeLevel()
51 EXPECT_EQ(AccountLogLevel::INFO, AccountLogWrapper::GetLogLevel());57 AccountLogWrapper::SetLogLevel(AccountLogLevel::DEBUG);58 EXPECT_EQ(AccountLogLevel::DEBUG, AccountLogWrapper::GetLogLevel());
198 if ((level < static_cast<std::int32_t>(AccountLogLevel::DEBUG)) || in SetLogLevel()199 (level > static_cast<std::int32_t>(AccountLogLevel::FATAL))) { in SetLogLevel()202 AccountLogLevel logLevel = static_cast<AccountLogLevel>(level); in SetLogLevel()