summaryrefslogtreecommitdiff
path: root/include/logger/ConsoleLogSink.hpp
blob: 0605fb86c0381905e9c02015f7448f5149aba104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __CONSOLE_LOGSINK_H
#define __CONSOLE_LOGSINK_H

#include "LogSink.hpp"

class ConsoleLogSink : public LogSink
{
	public:
		ConsoleLogSink( const LogLevel level ) : LogSink( level ) { }
		
		DLL_EXPORT virtual void log( const LogLevel level, const std::string &msg );
};

#endif