summaryrefslogtreecommitdiff
path: root/include/logger/ConsoleLogSink.hpp
blob: 75dea723f016fc9db528dc32c3798166e774f791 (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 ) { }
		
		LOGGER_DLL_VISIBLE virtual void log( const LogLevel level, const std::string &msg );
};

#endif