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

#include "LogSink.hpp"

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

#endif