summaryrefslogtreecommitdiffstats
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorBenjamin Barenblat <bbaren@mit.edu>2015-08-03 00:30:24 +0200
committerBenjamin Barenblat <bbaren@mit.edu>2015-08-03 00:30:24 +0200
commit0298b7bedd17f88430486dd502fb7923b1d10f26 (patch)
treee56edb5024da1c03b2021c428988f8a710417565 /src/common/logging/backend.cpp
parentHandle invalid `Log::Level::Count` (diff)
downloadyuzu-0298b7bedd17f88430486dd502fb7923b1d10f26.tar
yuzu-0298b7bedd17f88430486dd502fb7923b1d10f26.tar.gz
yuzu-0298b7bedd17f88430486dd502fb7923b1d10f26.tar.bz2
yuzu-0298b7bedd17f88430486dd502fb7923b1d10f26.tar.lz
yuzu-0298b7bedd17f88430486dd502fb7923b1d10f26.tar.xz
yuzu-0298b7bedd17f88430486dd502fb7923b1d10f26.tar.zst
yuzu-0298b7bedd17f88430486dd502fb7923b1d10f26.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/backend.cpp3
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
}