summaryrefslogtreecommitdiff
path: root/src/logger/ConsoleLogSink.cpp
blob: 84a1ebdf6ce4ec3c5ec87ff48fa1dec97ba04ec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "ConsoleLogSink.hpp"

#include <iostream>

using namespace std;

void ConsoleLogSink::log( const LogLevel level, const string &msg )
{
	if( level > reportingLevel( ) ) return;
	
	cerr 	<< Logger::toString( level )
		<< ": "
		<< msg
		<< endl;
		
	cerr.flush( );
}