diff options
author | Benjamin Barenblat <bbaren@mit.edu> | 2015-08-02 18:55:31 +0200 |
---|---|---|
committer | Benjamin Barenblat <bbaren@mit.edu> | 2015-08-02 18:55:31 +0200 |
commit | 9ff23da2550dd159d81933c0236529ececc526b5 (patch) | |
tree | a0d000b990dd935986bd41437e51f01b97a086bd /src/common | |
parent | Merge pull request #999 from LittleWhite-tb/qt-save-location (diff) | |
download | yuzu-9ff23da2550dd159d81933c0236529ececc526b5.tar yuzu-9ff23da2550dd159d81933c0236529ececc526b5.tar.gz yuzu-9ff23da2550dd159d81933c0236529ececc526b5.tar.bz2 yuzu-9ff23da2550dd159d81933c0236529ececc526b5.tar.lz yuzu-9ff23da2550dd159d81933c0236529ececc526b5.tar.xz yuzu-9ff23da2550dd159d81933c0236529ececc526b5.tar.zst yuzu-9ff23da2550dd159d81933c0236529ececc526b5.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/backend.cpp | 5 | ||||
-rw-r--r-- | src/common/logging/text_formatter.cpp | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index d85e58373..68580e1c0 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -6,6 +6,7 @@ #include <array> #include <cstdio> +#include "common/assert.h" #include "common/common_funcs.h" // snprintf compatibility define #include "common/logging/backend.h" #include "common/logging/filter.h" @@ -78,8 +79,10 @@ const char* GetLevelName(Level log_level) { LVL(Warning); LVL(Error); LVL(Critical); + case Level::Count: + ASSERT_MSG(false, "invalid log level"); + return "Unknown"; } - return "Unknown"; #undef LVL } diff --git a/src/common/logging/text_formatter.cpp b/src/common/logging/text_formatter.cpp index 94f3dfc1f..e3bb148bb 100644 --- a/src/common/logging/text_formatter.cpp +++ b/src/common/logging/text_formatter.cpp @@ -14,6 +14,7 @@ #include "common/logging/log.h" #include "common/logging/text_formatter.h" +#include "common/assert.h" #include "common/common_funcs.h" #include "common/string_util.h" @@ -82,6 +83,8 @@ void PrintColoredMessage(const Entry& entry) { color = FOREGROUND_RED | FOREGROUND_INTENSITY; break; case Level::Critical: // Bright magenta color = FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_INTENSITY; break; + case Level::Count: + ASSERT_MSG(false, "invalid log level"); break; } SetConsoleTextAttribute(console_handle, color); @@ -101,6 +104,8 @@ void PrintColoredMessage(const Entry& entry) { color = ESC "[1;31m"; break; case Level::Critical: // Bright magenta color = ESC "[1;35m"; break; + case Level::Count: + ASSERT_MSG(false, "invalid log level"); break; } fputs(color, stderr); |