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

#endif