aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/Log.cpp
blob: 84d80a8b08f40e1fdb4f673c2e4c9b910bfccf93 (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
#include <iostream>
#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
	cout.write(out.data(), out.size());
	cout.flush();
}