blob: 2d693d14a8613be15f88daf86156717f99e36953 (
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
|
/** \file
*
* Standalone example for usage of the logging functions
*/
#include <crepe/util/log.h>
#include <crepe/api/Config.h>
using namespace crepe;
using namespace crepe::util;
int main() {
auto & cfg = api::Config::get_instance();
// make sure all log messages get printed
cfg.log.level = util::log_level::TRACE;
dbg_trace();
dbg_logf("cfg.log.color is equal to %d", cfg.log.color);
logf(log_level::INFO, "info message!");
logf(log_level::WARNING, "very scary warning");
logf(log_level::ERROR, "fatal error!!!");
return 0;
}
|