Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
220608e5
Commit
220608e5
authored
Jun 19, 2019
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clang-format
parent
06fb5c7c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
26 deletions
+14
-26
thread_pool-inl.h
include/spdlog/details/thread_pool-inl.h
+4
-7
ansicolor_sink.h
include/spdlog/sinks/ansicolor_sink.h
+1
-2
syslog_sink.h
include/spdlog/sinks/syslog_sink.h
+8
-16
spdlog.h
include/spdlog/spdlog.h
+1
-1
No files found.
include/spdlog/details/thread_pool-inl.h
View file @
220608e5
...
...
@@ -22,19 +22,16 @@ SPDLOG_INLINE thread_pool::thread_pool(size_t q_max_items, size_t threads_n, std
}
for
(
size_t
i
=
0
;
i
<
threads_n
;
i
++
)
{
threads_
.
emplace_back
([
this
,
on_thread_start
]
{
threads_
.
emplace_back
([
this
,
on_thread_start
]
{
on_thread_start
();
this
->
thread_pool
::
worker_loop_
();
});
}
}
SPDLOG_INLINE
thread_pool
::
thread_pool
(
size_t
q_max_items
,
size_t
threads_n
)
:
thread_pool
(
q_max_items
,
threads_n
,
[]{})
{
}
SPDLOG_INLINE
thread_pool
::
thread_pool
(
size_t
q_max_items
,
size_t
threads_n
)
:
thread_pool
(
q_max_items
,
threads_n
,
[]
{})
{}
// message all threads to terminate gracefully join them
SPDLOG_INLINE
thread_pool
::~
thread_pool
()
...
...
include/spdlog/sinks/ansicolor_sink.h
View file @
220608e5
...
...
@@ -40,7 +40,6 @@ public:
void
set_pattern
(
const
std
::
string
&
pattern
)
final
;
void
set_formatter
(
std
::
unique_ptr
<
spdlog
::
formatter
>
sink_formatter
)
override
;
// Formatting codes
const
string_view_t
reset
=
"
\033
[m"
;
const
string_view_t
bold
=
"
\033
[1m"
;
...
...
@@ -81,7 +80,7 @@ private:
mutex_t
&
mutex_
;
bool
should_do_colors_
;
std
::
unordered_map
<
level
::
level_enum
,
string_view_t
,
level
::
level_hasher
>
colors_
;
void
print_ccode_
(
const
string_view_t
&
color_code
);
void
print_ccode_
(
const
string_view_t
&
color_code
);
void
print_range_
(
const
fmt
::
memory_buffer
&
formatted
,
size_t
start
,
size_t
end
);
};
...
...
include/spdlog/sinks/syslog_sink.h
View file @
220608e5
...
...
@@ -19,9 +19,9 @@ class syslog_sink : public base_sink<Mutex>
{
public
:
syslog_sink
(
std
::
string
ident
,
int
syslog_option
,
int
syslog_facility
,
bool
enable_formatting
)
:
enable_formatting_
{
enable_formatting
},
ident_
{
std
::
move
(
ident
)}
syslog_sink
(
std
::
string
ident
,
int
syslog_option
,
int
syslog_facility
,
bool
enable_formatting
)
:
enable_formatting_
{
enable_formatting
}
,
ident_
{
std
::
move
(
ident
)}
{
priorities_
[
static_cast
<
size_t
>
(
level
::
trace
)]
=
LOG_DEBUG
;
priorities_
[
static_cast
<
size_t
>
(
level
::
debug
)]
=
LOG_DEBUG
;
...
...
@@ -48,7 +48,7 @@ protected:
{
string_view_t
payload
;
if
(
enable_formatting_
)
if
(
enable_formatting_
)
{
fmt
::
memory_buffer
formatted
;
sink
::
formatter_
->
format
(
msg
,
formatted
);
...
...
@@ -86,23 +86,15 @@ using syslog_sink_st = syslog_sink<details::null_mutex>;
// Create and register a syslog logger
template
<
typename
Factory
=
default_factory
>
inline
std
::
shared_ptr
<
logger
>
syslog_logger_mt
(
const
std
::
string
&
logger_name
,
const
std
::
string
&
syslog_ident
=
""
,
int
syslog_option
=
0
,
int
syslog_facility
=
LOG_USER
,
bool
enable_formatting
=
false
)
inline
std
::
shared_ptr
<
logger
>
syslog_logger_mt
(
const
std
::
string
&
logger_name
,
const
std
::
string
&
syslog_ident
=
""
,
int
syslog_option
=
0
,
int
syslog_facility
=
LOG_USER
,
bool
enable_formatting
=
false
)
{
return
Factory
::
template
create
<
sinks
::
syslog_sink_mt
>
(
logger_name
,
syslog_ident
,
syslog_option
,
syslog_facility
,
enable_formatting
);
}
template
<
typename
Factory
=
default_factory
>
inline
std
::
shared_ptr
<
logger
>
syslog_logger_st
(
const
std
::
string
&
logger_name
,
const
std
::
string
&
syslog_ident
=
""
,
int
syslog_option
=
0
,
int
syslog_facility
=
LOG_USER
,
bool
enable_formatting
=
false
)
inline
std
::
shared_ptr
<
logger
>
syslog_logger_st
(
const
std
::
string
&
logger_name
,
const
std
::
string
&
syslog_ident
=
""
,
int
syslog_option
=
0
,
int
syslog_facility
=
LOG_USER
,
bool
enable_formatting
=
false
)
{
return
Factory
::
template
create
<
sinks
::
syslog_sink_st
>
(
logger_name
,
syslog_ident
,
syslog_option
,
syslog_facility
,
enable_formatting
);
}
...
...
include/spdlog/spdlog.h
View file @
220608e5
...
...
@@ -268,7 +268,7 @@ inline void critical(const wchar_t *fmt, const Args &... args)
do \
{ \
if (logger->should_log(level)) \
logger->force_log(spdlog::source_loc{__FILE__, __LINE__, SPDLOG_FUNCTION}, level, __VA_ARGS__);
\
logger->force_log(spdlog::source_loc{__FILE__, __LINE__, SPDLOG_FUNCTION}, level, __VA_ARGS__); \
} while (0)
#if SPDLOG_ACTIVE_LEVEL <= SPDLOG_LEVEL_TRACE
...
...
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