diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-01 14:40:20 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-01 14:40:20 +0100 |
commit | 6aa8fdd04728b6a499f526de727514ae3d0490b4 (patch) | |
tree | 37874e13ba877c4a5c33a2710a4fe3eb09f088c4 /src | |
parent | 33db98002292299b127d4428dc38091628c68854 (diff) |
clean up logging example
Diffstat (limited to 'src')
-rw-r--r-- | src/example/log.cpp | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/example/log.cpp b/src/example/log.cpp index 3bc6d80..04ab9cd 100644 --- a/src/example/log.cpp +++ b/src/example/log.cpp @@ -9,16 +9,21 @@ using namespace crepe; using namespace crepe::util; -int main() { - auto & cfg = api::Config::get_instance(); +// unrelated setup code +int _ = [] () { // make sure all log messages get printed + auto & cfg = api::Config::get_instance(); cfg.log.level = util::LogLevel::TRACE; + return 0; // satisfy compiler +} (); + +int main() { dbg_trace(); - dbg_logf("cfg.log.color is equal to %d", cfg.log.color); - logf(LogLevel::INFO, "info message!"); - logf(LogLevel::WARNING, "very scary warning"); - logf(LogLevel::ERROR, "fatal error!!!"); + dbg_logf("test printf parameters: %d", 3); + logf(LogLevel::INFO, "info message"); + logf(LogLevel::WARNING, "warning"); + logf(LogLevel::ERROR, "error"); return 0; } |