Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
8fd16fc4
Commit
8fd16fc4
authored
Jun 29, 2017
by
Alexei Pastuchov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code formatting (astyle and dos2unix)
it aims to solve the issue #467
parent
9a04e372
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
13 deletions
+14
-13
example/example.cpp
example/example.cpp
+1
-1
include/spdlog/details/async_logger_impl.h
include/spdlog/details/async_logger_impl.h
+1
-1
include/spdlog/details/logger_impl.h
include/spdlog/details/logger_impl.h
+1
-1
include/spdlog/details/pattern_formatter_impl.h
include/spdlog/details/pattern_formatter_impl.h
+2
-2
include/spdlog/details/registry.h
include/spdlog/details/registry.h
+1
-1
include/spdlog/logger.h
include/spdlog/logger.h
+1
-1
include/spdlog/sinks/ansicolor_sink.h
include/spdlog/sinks/ansicolor_sink.h
+7
-6
No files found.
example/example.cpp
View file @
8fd16fc4
include/spdlog/details/async_logger_impl.h
View file @
8fd16fc4
include/spdlog/details/logger_impl.h
View file @
8fd16fc4
include/spdlog/details/pattern_formatter_impl.h
View file @
8fd16fc4
...
...
@@ -495,7 +495,7 @@ class full_formatter SPDLOG_FINAL:public flag_formatter
// pattern_formatter inline impl
///////////////////////////////////////////////////////////////////////////////
inline
spdlog
::
pattern_formatter
::
pattern_formatter
(
const
std
::
string
&
pattern
,
pattern_time_type
pattern_time
)
:
_pattern_time
(
pattern_time
)
:
_pattern_time
(
pattern_time
)
{
compile_pattern
(
pattern
);
}
...
...
include/spdlog/details/registry.h
View file @
8fd16fc4
include/spdlog/logger.h
View file @
8fd16fc4
include/spdlog/sinks/ansicolor_sink.h
View file @
8fd16fc4
...
...
@@ -42,7 +42,8 @@ public:
_flush
();
}
void
set_color
(
level
::
level_enum
color_level
,
const
std
::
string
&
color
)
{
void
set_color
(
level
::
level_enum
color_level
,
const
std
::
string
&
color
)
{
std
::
lock_guard
<
Mutex
>
lock
(
base_sink
<
Mutex
>::
_mutex
);
colors_
[
color_level
]
=
color
;
}
...
...
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