fix: remove 'count' from logger level (#2408)

This commit is contained in:
Peter Chen
2025-08-11 07:00:52 -04:00
committed by GitHub
parent c95d8f2f89
commit 226d386be2
3 changed files with 4 additions and 5 deletions

View File

@@ -45,14 +45,13 @@ class ConfigValue;
/**
* @brief specific values that are accepted for logger levels in config.
*/
static constexpr std::array<char const*, 7> kLOG_LEVELS = {
static constexpr std::array<char const*, 6> kLOG_LEVELS = {
"trace",
"debug",
"info",
"warning",
"error",
"fatal",
"count",
};
/**