blob: ce0c07ae33c11ade9b55a5eeceac9f2ed7773565 (
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
41
42
43
44
45
46
47
48
49
|
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <string>
#include "fmt.h"
#include "log.h"
#include "../api/Config.h"
using namespace crepe::util;
using namespace std;
string log_prefix(log_level level) {
switch (level) {
case log_level::TRACE: return LogColor().fg_white().str("[TRACE]") + " ";
case log_level::DEBUG: return LogColor().fg_magenta().str("[DEBUG]") + " ";
case log_level::INFO: return LogColor().fg_blue().str("[INFO]") + " ";
case log_level::WARNING: return LogColor().fg_yellow().str("[WARN]") + " ";
case log_level::ERROR: return LogColor().fg_red().str("[ERROR]") + " ";
}
return "";
}
static void log(enum log_level level, const string msg) {
auto & cfg = crepe::api::Config::get_instance();
if (level < cfg.log.level) return;
string out = log_prefix(level) + msg;
if (!out.ends_with("\n")) out += "\n";
// TODO: also log to file or smth
printf("%s", out.c_str());
fflush(stdout);
}
void crepe::util::logf(const char * fmt, ...) {
va_list args;
va_start(args, fmt);
log(log_level::DEBUG, va_stringf(args, fmt));
va_end(args);
}
void crepe::util::logf(log_level level, const char * fmt, ...) {
va_list args;
va_start(args, fmt);
log(level, va_stringf(args, fmt));
va_end(args);
}
|