blob: db8aa48cfa35e2ed55fcd297ed35b9cc9ebe3d5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/** \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 = LogLevel::TRACE;
return 0; // satisfy compiler
}();
int main() {
dbg_trace();
dbg_logf("test printf parameters: %d", 3);
logf(LogLevel::INFO, "info message");
logf(LogLevel::WARNING, "warning");
logf(LogLevel::ERROR, "error");
return 0;
}
|