Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
73af4c02
Commit
73af4c02
authored
May 24, 2017
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update details
parent
775b99fd
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
26 additions
and
26 deletions
+26
-26
async_log_helper.h
spdlog/details/async_log_helper.h
+4
-4
file_helper.h
spdlog/details/file_helper.h
+2
-2
logger_impl.h
spdlog/details/logger_impl.h
+2
-2
mpmc_bounded_q.h
spdlog/details/mpmc_bounded_q.h
+1
-1
os.h
spdlog/details/os.h
+1
-1
pattern_formatter_impl.h
spdlog/details/pattern_formatter_impl.h
+4
-4
registry.h
spdlog/details/registry.h
+4
-4
spdlog_impl.h
spdlog/details/spdlog_impl.h
+8
-8
No files found.
spdlog/details/async_log_helper.h
View file @
73af4c02
...
...
@@ -15,10 +15,10 @@
#pragma once
#include "common.h"
#include "sinks/sink.h"
#include "
details/
mpmc_bounded_q.h"
#include "
details/
log_msg.h"
#include "
details/
os.h"
#include "
../
sinks/sink.h"
#include "mpmc_bounded_q.h"
#include "log_msg.h"
#include "os.h"
#include "formatter.h"
#include <chrono>
...
...
spdlog/details/file_helper.h
View file @
73af4c02
...
...
@@ -10,8 +10,8 @@
// Can be set to auto flush on every line
// Throw spdlog_ex exception on errors
#include "
details/
os.h"
#include "
details/
log_msg.h"
#include "os.h"
#include "log_msg.h"
#include <chrono>
#include <cstdio>
...
...
spdlog/details/logger_impl.h
View file @
73af4c02
...
...
@@ -5,8 +5,8 @@
#pragma once
#include "
spdlog
/logger.h"
#include "
spdlog
/sinks/stdout_sinks.h"
#include "
..
/logger.h"
#include "
..
/sinks/stdout_sinks.h"
#include <memory>
#include <string>
...
...
spdlog/details/mpmc_bounded_q.h
View file @
73af4c02
...
...
@@ -43,7 +43,7 @@ Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
#include "
spdlog
/common.h"
#include "
..
/common.h"
#include <atomic>
#include <utility>
...
...
spdlog/details/os.h
View file @
73af4c02
...
...
@@ -4,7 +4,7 @@
//
#pragma once
#include "
spdlog
/common.h"
#include "
..
/common.h"
#include <cstdio>
#include <ctime>
...
...
spdlog/details/pattern_formatter_impl.h
View file @
73af4c02
...
...
@@ -5,10 +5,10 @@
#pragma once
#include "
spdlog
/formatter.h"
#include "
spdlog
/details/log_msg.h"
#include "
spdlog
/details/os.h"
#include "
spdlog
/fmt/fmt.h"
#include "
..
/formatter.h"
#include "
..
/details/log_msg.h"
#include "
..
/details/os.h"
#include "
..
/fmt/fmt.h"
#include <chrono>
#include <ctime>
...
...
spdlog/details/registry.h
View file @
73af4c02
...
...
@@ -10,10 +10,10 @@
// If user requests a non existing logger, nullptr will be returned
// This class is thread safe
#include "
spdlog
/details/null_mutex.h"
#include "
spdlog
/logger.h"
#include "
spdlog
/async_logger.h"
#include "
spdlog
/common.h"
#include "
..
/details/null_mutex.h"
#include "
..
/logger.h"
#include "
..
/async_logger.h"
#include "
..
/common.h"
#include <chrono>
#include <functional>
...
...
spdlog/details/spdlog_impl.h
View file @
73af4c02
...
...
@@ -8,23 +8,23 @@
//
// Global registry functions
//
#include "
spdlog
/spdlog.h"
#include "
spdlog
/details/registry.h"
#include "
spdlog
/sinks/file_sinks.h"
#include "
spdlog
/sinks/stdout_sinks.h"
#include "
..
/spdlog.h"
#include "
..
/details/registry.h"
#include "
..
/sinks/file_sinks.h"
#include "
..
/sinks/stdout_sinks.h"
#ifdef SPDLOG_ENABLE_SYSLOG
#include "
spdlog
/sinks/syslog_sink.h"
#include "
..
/sinks/syslog_sink.h"
#endif
#ifdef _WIN32
#include "
spdlog
/sinks/wincolor_sink.h"
#include "
..
/sinks/wincolor_sink.h"
#else
#include "
spdlog
/sinks/ansicolor_sink.h"
#include "
..
/sinks/ansicolor_sink.h"
#endif
#ifdef __ANDROID__
#include "
spdlog
/sinks/android_sink.h"
#include "
..
/sinks/android_sink.h"
#endif
#include <chrono>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment