Commit 33df6140 authored by captainwong's avatar captainwong

save log

parent 4cf53ecb
#pragma once #pragma once
#ifdef WIN32 //#ifdef WIN32
#ifndef _CRT_SECURE_NO_WARNINGS //#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS //#define _CRT_SECURE_NO_WARNINGS
#endif //#endif
#include <Windows.h> //#include <Windows.h>
#endif //#endif
/* /*
Warnning: Warnning:
...@@ -14,14 +14,17 @@ you should call log::get_instance() once in your main thread, ...@@ -14,14 +14,17 @@ you should call log::get_instance() once in your main thread,
or else it might cause multiple constructions. or else it might cause multiple constructions.
*/ */
// uncomment line below to enable OutputDebugString
// #define NO_WINDOWS
#include <assert.h> #include <assert.h>
#include <mutex> #include <mutex>
#include <fstream> #include <fstream>
#include <string> #include <string>
#include <memory> #include <memory>
#include <cstring> #include <cstring>
#include <stdint.h> #include <cstdint>
#include <stdarg.h> #include <cstdarg>
#include <algorithm> #include <algorithm>
#include <boost/noncopyable.hpp> #include <boost/noncopyable.hpp>
#include "utf8.h" #include "utf8.h"
...@@ -183,7 +186,7 @@ public: ...@@ -183,7 +186,7 @@ public:
} }
if (instance->log_to_dbg_view_) { if (instance->log_to_dbg_view_) {
#ifdef WIN32 #if defined(WIN32) && !defined(NO_WINDOWS)
OutputDebugStringW(buf); OutputDebugStringW(buf);
#else #else
std::printf(msg.c_str()); std::printf(msg.c_str());
...@@ -288,7 +291,7 @@ protected: ...@@ -288,7 +291,7 @@ protected:
} }
void output_to_dbg_view(const std::string& msg) { void output_to_dbg_view(const std::string& msg) {
#ifdef WIN32 #if defined(WIN32) && !defined(NO_WINDOWS)
OutputDebugStringA(msg.c_str()); OutputDebugStringA(msg.c_str());
#else #else
std::printf(msg.c_str()); std::printf(msg.c_str());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment