Commit 73af4c02 authored by captainwong's avatar captainwong

update details

parent 775b99fd
...@@ -15,10 +15,10 @@ ...@@ -15,10 +15,10 @@
#pragma once #pragma once
#include "common.h" #include "common.h"
#include "sinks/sink.h" #include "../sinks/sink.h"
#include "details/mpmc_bounded_q.h" #include "mpmc_bounded_q.h"
#include "details/log_msg.h" #include "log_msg.h"
#include "details/os.h" #include "os.h"
#include "formatter.h" #include "formatter.h"
#include <chrono> #include <chrono>
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
// Can be set to auto flush on every line // Can be set to auto flush on every line
// Throw spdlog_ex exception on errors // Throw spdlog_ex exception on errors
#include "details/os.h" #include "os.h"
#include "details/log_msg.h" #include "log_msg.h"
#include <chrono> #include <chrono>
#include <cstdio> #include <cstdio>
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
#pragma once #pragma once
#include "spdlog/logger.h" #include "../logger.h"
#include "spdlog/sinks/stdout_sinks.h" #include "../sinks/stdout_sinks.h"
#include <memory> #include <memory>
#include <string> #include <string>
......
...@@ -43,7 +43,7 @@ Distributed under the MIT License (http://opensource.org/licenses/MIT) ...@@ -43,7 +43,7 @@ Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once #pragma once
#include "spdlog/common.h" #include "../common.h"
#include <atomic> #include <atomic>
#include <utility> #include <utility>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
// //
#pragma once #pragma once
#include "spdlog/common.h" #include "../common.h"
#include <cstdio> #include <cstdio>
#include <ctime> #include <ctime>
......
...@@ -5,10 +5,10 @@ ...@@ -5,10 +5,10 @@
#pragma once #pragma once
#include "spdlog/formatter.h" #include "../formatter.h"
#include "spdlog/details/log_msg.h" #include "../details/log_msg.h"
#include "spdlog/details/os.h" #include "../details/os.h"
#include "spdlog/fmt/fmt.h" #include "../fmt/fmt.h"
#include <chrono> #include <chrono>
#include <ctime> #include <ctime>
......
...@@ -10,10 +10,10 @@ ...@@ -10,10 +10,10 @@
// If user requests a non existing logger, nullptr will be returned // If user requests a non existing logger, nullptr will be returned
// This class is thread safe // This class is thread safe
#include "spdlog/details/null_mutex.h" #include "../details/null_mutex.h"
#include "spdlog/logger.h" #include "../logger.h"
#include "spdlog/async_logger.h" #include "../async_logger.h"
#include "spdlog/common.h" #include "../common.h"
#include <chrono> #include <chrono>
#include <functional> #include <functional>
......
...@@ -8,23 +8,23 @@ ...@@ -8,23 +8,23 @@
// //
// Global registry functions // Global registry functions
// //
#include "spdlog/spdlog.h" #include "../spdlog.h"
#include "spdlog/details/registry.h" #include "../details/registry.h"
#include "spdlog/sinks/file_sinks.h" #include "../sinks/file_sinks.h"
#include "spdlog/sinks/stdout_sinks.h" #include "../sinks/stdout_sinks.h"
#ifdef SPDLOG_ENABLE_SYSLOG #ifdef SPDLOG_ENABLE_SYSLOG
#include "spdlog/sinks/syslog_sink.h" #include "../sinks/syslog_sink.h"
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
#include "spdlog/sinks/wincolor_sink.h" #include "../sinks/wincolor_sink.h"
#else #else
#include "spdlog/sinks/ansicolor_sink.h" #include "../sinks/ansicolor_sink.h"
#endif #endif
#ifdef __ANDROID__ #ifdef __ANDROID__
#include "spdlog/sinks/android_sink.h" #include "../sinks/android_sink.h"
#endif #endif
#include <chrono> #include <chrono>
......
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