diff options
-rw-r--r-- | src/test.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/test.cpp b/src/test.cpp index 9cffc6d..0a1af49 100644 --- a/src/test.cpp +++ b/src/test.cpp @@ -203,13 +203,14 @@ int main() } assert(error == false); - Config::set("log_level", "3"); + Config::set("log_level", "2"); Config::set("log_file", ""); - log_debug("coucou"); - log_info("coucou"); - log_warning("coucou"); - log_error("coucou"); + std::cout << color << "Testing logging…" << reset << std::endl; + log_debug("If you see this, the test FAILED."); + log_info("If you see this, the test FAILED."); + log_warning("You wust see this message. And the next one too."); + log_error("It’s not an error, don’t worry, the test passed."); return 0; } |