blob: f47f45b346c48b6ef07ae28570bf067c3f9a1e49 (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
#pragma once
#include "../util/log.h"
namespace crepe::api {
class Config {
private:
Config() = default;
public:
~Config() = default;
public:
//! Retrieve handle to global Config instance
static Config & get_instance() {
static Config instance;
return instance;
}
public:
//! Logging-related settings
struct {
/**
* \brief Log level
*
* Only messages with equal or higher priority than this value will be
* logged.
*/
util::log_level level = util::log_level::INFO;
/**
* \brief Colored log output
*
* Enables log coloring using ANSI escape codes.
*/
bool color = true;
} log;
};
}
|