Last active
November 10, 2020 18:32
-
-
Save mwilsoncoding/ffdd83503ed3e34d5e7d6ee43e8f090b to your computer and use it in GitHub Desktop.
Enable ustushi debug - patch made from: https://gitlab.com/utsushi/utsushi/-/issues/10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/log.cpp b/lib/log.cpp | |
index 9fa576e..0ae6107 100644 | |
--- a/lib/log.cpp | |
+++ b/lib/log.cpp | |
@@ -26,8 +26,8 @@ | |
namespace utsushi { | |
-log::priority log::threshold = log::FATAL; | |
-log::category log::matching = log::NOTHING; | |
+log::priority log::threshold = log::DEBUG; | |
+log::category log::matching = log::ALL; | |
template<> | |
std::basic_ostream< char >& |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment