diff options
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/backend.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 68580e1c0..0a081e7d4 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -80,8 +80,7 @@ const char* GetLevelName(Level log_level) { LVL(Error); LVL(Critical); case Level::Count: - ASSERT_MSG(false, "invalid log level"); - return "Unknown"; + UNREACHABLE(); } #undef LVL } |