blob: 346e08eaacda681ff9c0c2578090fc4404d8ccdb (
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
|
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
#include <string>
#include "../api/Config.h"
#include "Log.h"
using namespace crepe;
using namespace std;
string Log::prefix(const Level & level) {
switch (level) {
case Level::TRACE:
return LogColor().fg_white().str("[TRACE]") + " ";
case Level::DEBUG:
return LogColor().fg_magenta().str("[DEBUG]") + " ";
case Level::INFO:
return LogColor().fg_blue().str("[INFO]") + " ";
case Level::WARNING:
return LogColor().fg_yellow().str("[WARN]") + " ";
case Level::ERROR:
return LogColor().fg_red().str("[ERROR]") + " ";
}
return "";
}
void Log::log(const Level & level, const string & msg) {
auto & cfg = 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
fwrite(out.c_str(), 1, out.size(), stdout);
fflush(stdout);
}
|