aboutsummaryrefslogtreecommitdiff
path: root/src/example/log.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 20:25:24 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 20:25:24 +0100
commitf7a1ca3b7d934043b48602601e789bad27940405 (patch)
tree4622fd0f4f85b5856306d15b129ac1c3e64b567a /src/example/log.cpp
parente2c27d8c99a71e5d94ffe49027ec13afeb74b021 (diff)
parentb6aea9de9c9c8d86856bcd6c3b521e385bc00a69 (diff)
merge `master` into `loek/util`
Diffstat (limited to 'src/example/log.cpp')
-rw-r--r--src/example/log.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/example/log.cpp b/src/example/log.cpp
deleted file mode 100644
index 5baa021..0000000
--- a/src/example/log.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-/** \file
- *
- * Standalone example for usage of the logging functions
- */
-
-#include <crepe/api/Config.h>
-#include <crepe/util/Log.h>
-
-using namespace crepe;
-
-// unrelated setup code
-int _ = []() {
- // make sure all log messages get printed
- auto & cfg = Config::get_instance();
- cfg.log.level = Log::Level::TRACE;
-
- return 0; // satisfy compiler
-}();
-
-int main() {
- dbg_trace();
- dbg_log("debug message");
- Log::logf("info message with variable: {}", 3);
- Log::logf(Log::Level::WARNING, "warning");
- Log::logf(Log::Level::ERROR, "error");
-
- return 0;
-}