aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/logging.cpp
blob: 021613d9f152392b3e82c38d87fc3f02daaae4c5 (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
50
51
52
#include "pch.h"
#include "logging.h"
#include "context.h"
#include "dedicated.h"
#include <vector>
#include <iostream>
#include <chrono>

std::vector<LoggingSink> loggingSinks;

void Log(Context context, char* fmt, ...)
{
	va_list args;
	va_start(args, fmt);

	Log(context, fmt, args);
	va_end(args);
}

void Log(Context context, char* fmt, va_list args)
{
	char buf[1024];
	vsnprintf_s(buf, _TRUNCATE, fmt, args);

	for (LoggingSink& sink : loggingSinks)
		sink(context, fmt);
}

void AddLoggingSink(LoggingSink sink)
{
	loggingSinks.push_back(sink);
}

// default logging sink
void DefaultLoggingSink(Context context, char* message)
{
	time_t now = time(0);
	tm* localTime = localtime(&now);
	char timeBuf[10];
	strftime(timeBuf, sizeof(timeBuf), "%X", localTime);
	
	std::cout << "[" << timeBuf << "] ";
	if (context != NONE)
		std::cout << "[" << GetContextName(context) << "] ";

	std::cout << message;

	if (!IsDedicated())
	{

	}
}