bitz-server  2.0.1
windebug_sink.h
1 //
2 // Copyright(c) 2017 Alexander Dalshov.
3 // Distributed under the MIT License (http://opensource.org/licenses/MIT)
4 //
5 
6 #pragma once
7 
8 #if defined(_WIN32)
9 
10 #include "msvc_sink.h"
11 
12 namespace spdlog {
13 namespace sinks {
14 
15 /*
16  * Windows debug sink (logging using OutputDebugStringA, synonym for msvc_sink)
17  */
18 template<class Mutex>
19 using windebug_sink = msvc_sink<Mutex>;
20 
21 using windebug_sink_mt = msvc_sink_mt;
22 using windebug_sink_st = msvc_sink_st;
23 
24 } // namespace sinks
25 } // namespace spdlog
26 
27 #endif
Definition: async_logger.h:26