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
f3a41748
Commit
f3a41748
authored
Jan 15, 2015
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
astyle.sh
parent
489304a9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
45 deletions
+45
-45
example/example.cpp
example/example.cpp
+1
-1
include/spdlog/async_logger.h
include/spdlog/async_logger.h
+16
-16
include/spdlog/details/async_log_helper.h
include/spdlog/details/async_log_helper.h
+11
-11
include/spdlog/details/async_logger_impl.h
include/spdlog/details/async_logger_impl.h
+17
-17
No files found.
example/example.cpp
View file @
f3a41748
...
@@ -66,7 +66,7 @@ int main(int, char* [])
...
@@ -66,7 +66,7 @@ int main(int, char* [])
SPDLOG_TRACE
(
console
,
"Enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}"
,
1
,
3.23
);
SPDLOG_TRACE
(
console
,
"Enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}"
,
1
,
3.23
);
SPDLOG_DEBUG
(
console
,
"Enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}"
,
1
,
3.23
);
SPDLOG_DEBUG
(
console
,
"Enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}"
,
1
,
3.23
);
// Asynchronous logging is very fast..
// Asynchronous logging is very fast..
// Just call spdlog::set_async_mode(q_size) and all created loggers from now on will be asynchronous..
// Just call spdlog::set_async_mode(q_size) and all created loggers from now on will be asynchronous..
size_t
q_size
=
1048576
;
//queue size must be power of 2
size_t
q_size
=
1048576
;
//queue size must be power of 2
...
...
include/spdlog/async_logger.h
View file @
f3a41748
...
@@ -53,24 +53,24 @@ class async_logger :public logger
...
@@ -53,24 +53,24 @@ class async_logger :public logger
{
{
public:
public:
template
<
class
It
>
template
<
class
It
>
async_logger
(
const
std
::
string
&
name
,
async_logger
(
const
std
::
string
&
name
,
const
It
&
begin
,
const
It
&
begin
,
const
It
&
end
,
const
It
&
end
,
size_t
queue_size
,
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
async_logger
(
const
std
::
string
&
logger_name
,
async_logger
(
const
std
::
string
&
logger_name
,
sinks_init_list
sinks
,
sinks_init_list
sinks
,
size_t
queue_size
,
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
async_logger
(
const
std
::
string
&
logger_name
,
async_logger
(
const
std
::
string
&
logger_name
,
sink_ptr
single_sink
,
sink_ptr
single_sink
,
size_t
queue_size
,
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
protected:
protected:
...
...
include/spdlog/details/async_log_helper.h
View file @
f3a41748
...
@@ -110,11 +110,11 @@ public:
...
@@ -110,11 +110,11 @@ public:
async_log_helper
(
formatter_ptr
formatter
,
async_log_helper
(
formatter_ptr
formatter
,
const
std
::
vector
<
sink_ptr
>&
sinks
,
const
std
::
vector
<
sink_ptr
>&
sinks
,
size_t
queue_size
,
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
void
log
(
const
details
::
log_msg
&
msg
);
void
log
(
const
details
::
log_msg
&
msg
);
//Stop logging and join the back thread
//Stop logging and join the back thread
...
@@ -125,10 +125,10 @@ public:
...
@@ -125,10 +125,10 @@ public:
private:
private:
formatter_ptr
_formatter
;
formatter_ptr
_formatter
;
std
::
vector
<
std
::
shared_ptr
<
sinks
::
sink
>>
_sinks
;
std
::
vector
<
std
::
shared_ptr
<
sinks
::
sink
>>
_sinks
;
// queue of messages to log
// queue of messages to log
q_type
_q
;
q_type
_q
;
// last exception thrown from the worker thread
// last exception thrown from the worker thread
std
::
shared_ptr
<
spdlog_ex
>
_last_workerthread_ex
;
std
::
shared_ptr
<
spdlog_ex
>
_last_workerthread_ex
;
...
@@ -137,10 +137,10 @@ private:
...
@@ -137,10 +137,10 @@ private:
// worker thread warmup callback - one can set thread priority, affinity, etc
// worker thread warmup callback - one can set thread priority, affinity, etc
const
std
::
function
<
void
()
>
_worker_warmup_cb
;
const
std
::
function
<
void
()
>
_worker_warmup_cb
;
// worker thread
// worker thread
std
::
thread
_worker_thread
;
std
::
thread
_worker_thread
;
// throw last worker thread exception or if worker thread is not active
// throw last worker thread exception or if worker thread is not active
void
throw_if_bad_worker
();
void
throw_if_bad_worker
();
...
...
include/spdlog/details/async_logger_impl.h
View file @
f3a41748
...
@@ -35,29 +35,29 @@
...
@@ -35,29 +35,29 @@
template
<
class
It
>
template
<
class
It
>
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_name
,
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_name
,
const
It
&
begin
,
const
It
&
begin
,
const
It
&
end
,
const
It
&
end
,
size_t
queue_size
,
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
,
const
async_overflow_policy
overflow_policy
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
)
:
const
std
::
function
<
void
()
>&
worker_warmup_cb
)
:
logger
(
logger_name
,
begin
,
end
),
logger
(
logger_name
,
begin
,
end
),
_async_log_helper
(
new
details
::
async_log_helper
(
_formatter
,
_sinks
,
queue_size
,
overflow_policy
,
worker_warmup_cb
))
_async_log_helper
(
new
details
::
async_log_helper
(
_formatter
,
_sinks
,
queue_size
,
overflow_policy
,
worker_warmup_cb
))
{
{
}
}
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_name
,
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_name
,
sinks_init_list
sinks
,
sinks_init_list
sinks
,
size_t
queue_size
,
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
,
const
async_overflow_policy
overflow_policy
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
)
:
const
std
::
function
<
void
()
>&
worker_warmup_cb
)
:
async_logger
(
logger_name
,
sinks
.
begin
(),
sinks
.
end
(),
queue_size
,
overflow_policy
,
worker_warmup_cb
)
{}
async_logger
(
logger_name
,
sinks
.
begin
(),
sinks
.
end
(),
queue_size
,
overflow_policy
,
worker_warmup_cb
)
{}
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_name
,
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_name
,
sink_ptr
single_sink
,
sink_ptr
single_sink
,
size_t
queue_size
,
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
,
const
async_overflow_policy
overflow_policy
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
)
:
const
std
::
function
<
void
()
>&
worker_warmup_cb
)
:
async_logger
(
logger_name
,
{
single_sink
},
queue_size
,
overflow_policy
,
worker_warmup_cb
)
{}
async_logger
(
logger_name
,
{
single_sink
},
queue_size
,
overflow_policy
,
worker_warmup_cb
)
{}
inline
void
spdlog
::
async_logger
::
_set_formatter
(
spdlog
::
formatter_ptr
msg_formatter
)
inline
void
spdlog
::
async_logger
::
_set_formatter
(
spdlog
::
formatter_ptr
msg_formatter
)
...
...
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