aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/Log.cpp
blob: e5837344ac19b178af947611712a9e7a074082d5 (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
#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);
}