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
524ca93e
Commit
524ca93e
authored
Jan 15, 2015
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comments
parent
6cd7b9a2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
include/spdlog/spdlog.h
include/spdlog/spdlog.h
+14
-14
No files found.
include/spdlog/spdlog.h
View file @
524ca93e
...
@@ -47,29 +47,31 @@ namespace spdlog
...
@@ -47,29 +47,31 @@ namespace spdlog
// logger.info() << "This is another message" << x << y << z;
// logger.info() << "This is another message" << x << y << z;
std
::
shared_ptr
<
logger
>
get
(
const
std
::
string
&
name
);
std
::
shared_ptr
<
logger
>
get
(
const
std
::
string
&
name
);
//
//
// Set global formatting
// Set global formatting
// e
.g.
spdlog::set_pattern("%Y-%m-%d %H:%M:%S.%e %l : %v");
// e
xample:
spdlog::set_pattern("%Y-%m-%d %H:%M:%S.%e %l : %v");
//
//
void
set_pattern
(
const
std
::
string
&
format_string
);
void
set_pattern
(
const
std
::
string
&
format_string
);
void
set_formatter
(
formatter_ptr
f
);
void
set_formatter
(
formatter_ptr
f
);
//
//
// Set global logging level
// Set global logging level
for
//
//
void
set_level
(
level
::
level_enum
log_level
);
void
set_level
(
level
::
level_enum
log_level
);
//
// Turn on async mode (off by default) and set the queue size for each async_logger.
// Turn on async mode (off by default) and set the queue size for each async_logger.
// effective only for loggers created after this call.
// effective only for loggers created after this call.
// queue_size: size of queue (must be power of 2):
// queue_size: size of queue (must be power of 2):
// Each logger will pre-allocate a dedicated queue with queue_size entries upon construction.
// Each logger will pre-allocate a dedicated queue with queue_size entries upon construction.
// async_overflow_policy (optional):
//
// async_overflow_policy::block_retry (default policy, if queue is full, block until queue has room for the new log entry)
// async_overflow_policy (optional, block_retry by default):
// async_overflow_policy::discard_log_msg (never block and discard any new messages when queue overflows)
// async_overflow_policy::block_retry - if queue is full, block until queue has room for the new log entry.
// worker_warmup_cb(optional): callback function that will be called in worker thread upon start (can be used to init stuff like thread affinity)
// async_overflow_policy::discard_log_msg - never block and discard any new messages when queue overflows.
//
// worker_warmup_cb (optional):
// callback function that will be called in worker thread upon start (can be used to init stuff like thread affinity)
//
void
set_async_mode
(
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
void
set_async_mode
(
size_t
queue_size
,
const
async_overflow_policy
overflow_policy
=
async_overflow_policy
::
block_retry
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
=
nullptr
);
// Turn off async mode
// Turn off async mode
...
@@ -104,11 +106,9 @@ std::shared_ptr<logger> stderr_logger_st(const std::string& logger_name);
...
@@ -104,11 +106,9 @@ std::shared_ptr<logger> stderr_logger_st(const std::string& logger_name);
std
::
shared_ptr
<
logger
>
syslog_logger
(
const
std
::
string
&
logger_name
,
const
std
::
string
&
ident
=
""
,
int
syslog_option
=
0
);
std
::
shared_ptr
<
logger
>
syslog_logger
(
const
std
::
string
&
logger_name
,
const
std
::
string
&
ident
=
""
,
int
syslog_option
=
0
);
#endif
#endif
//
// Create a logger with multiple sinks
// Create a logger with multiple sinks
//
std
::
shared_ptr
<
logger
>
create
(
const
std
::
string
&
logger_name
,
sinks_init_list
sinks
);
std
::
shared_ptr
<
logger
>
create
(
const
std
::
string
&
logger_name
,
sinks_init_list
sinks
);
template
<
class
It
>
template
<
class
It
>
std
::
shared_ptr
<
logger
>
create
(
const
std
::
string
&
logger_name
,
const
It
&
sinks_begin
,
const
It
&
sinks_end
);
std
::
shared_ptr
<
logger
>
create
(
const
std
::
string
&
logger_name
,
const
It
&
sinks_begin
,
const
It
&
sinks_end
);
...
@@ -147,11 +147,11 @@ std::shared_ptr<spdlog::logger> create(const std::string& logger_name, const Arg
...
@@ -147,11 +147,11 @@ std::shared_ptr<spdlog::logger> create(const std::string& logger_name, const Arg
// Drop the reference to the given logger
// Drop the reference to the given logger
void
drop
(
const
std
::
string
&
name
);
void
drop
(
const
std
::
string
&
name
);
// Drop all references
// Drop all references
void
drop_all
();
void
drop_all
();
}
}
#include "details/spdlog_impl.h"
#include "details/spdlog_impl.h"
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