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
af50d5ef
Commit
af50d5ef
authored
Feb 25, 2018
by
Daniel Chabrowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
readability-inconsistent-declaration-parameter-name
parent
9ce66f2c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
18 deletions
+16
-18
include/spdlog/async_logger.h
include/spdlog/async_logger.h
+2
-2
include/spdlog/details/async_logger_impl.h
include/spdlog/details/async_logger_impl.h
+7
-7
include/spdlog/details/logger_impl.h
include/spdlog/details/logger_impl.h
+6
-6
include/spdlog/sinks/file_sinks.h
include/spdlog/sinks/file_sinks.h
+1
-3
No files found.
include/spdlog/async_logger.h
View file @
af50d5ef
...
@@ -44,7 +44,7 @@ public:
...
@@ -44,7 +44,7 @@ public:
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
=
std
::
chrono
::
milliseconds
::
zero
(),
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
=
std
::
chrono
::
milliseconds
::
zero
(),
const
std
::
function
<
void
()
>&
worker_teardown_cb
=
nullptr
);
const
std
::
function
<
void
()
>&
worker_teardown_cb
=
nullptr
);
async_logger
(
const
std
::
string
&
logger_
name
,
async_logger
(
const
std
::
string
&
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
,
...
@@ -52,7 +52,7 @@ public:
...
@@ -52,7 +52,7 @@ public:
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
=
std
::
chrono
::
milliseconds
::
zero
(),
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
=
std
::
chrono
::
milliseconds
::
zero
(),
const
std
::
function
<
void
()
>&
worker_teardown_cb
=
nullptr
);
const
std
::
function
<
void
()
>&
worker_teardown_cb
=
nullptr
);
async_logger
(
const
std
::
string
&
logger_
name
,
async_logger
(
const
std
::
string
&
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
,
...
...
include/spdlog/details/async_logger_impl.h
View file @
af50d5ef
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#include <memory>
#include <memory>
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
&
name
,
const
It
&
begin
,
const
It
&
begin
,
const
It
&
end
,
const
It
&
end
,
size_t
queue_size
,
size_t
queue_size
,
...
@@ -25,28 +25,28 @@ inline spdlog::async_logger::async_logger(const std::string& logger_name,
...
@@ -25,28 +25,28 @@ inline spdlog::async_logger::async_logger(const std::string& logger_name,
const
std
::
function
<
void
()
>&
worker_warmup_cb
,
const
std
::
function
<
void
()
>&
worker_warmup_cb
,
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
,
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
,
const
std
::
function
<
void
()
>&
worker_teardown_cb
)
:
const
std
::
function
<
void
()
>&
worker_teardown_cb
)
:
logger
(
logger_
name
,
begin
,
end
),
logger
(
name
,
begin
,
end
),
_async_log_helper
(
new
details
::
async_log_helper
(
_formatter
,
_sinks
,
queue_size
,
_err_handler
,
overflow_policy
,
worker_warmup_cb
,
flush_interval_ms
,
worker_teardown_cb
))
_async_log_helper
(
new
details
::
async_log_helper
(
_formatter
,
_sinks
,
queue_size
,
_err_handler
,
overflow_policy
,
worker_warmup_cb
,
flush_interval_ms
,
worker_teardown_cb
))
{
{
}
}
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_
name
,
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
name
,
sinks_init_list
sinks
_list
,
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
,
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
,
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
,
const
std
::
function
<
void
()
>&
worker_teardown_cb
)
:
const
std
::
function
<
void
()
>&
worker_teardown_cb
)
:
async_logger
(
logger_name
,
sinks_list
.
begin
(),
sinks_list
.
end
(),
queue_size
,
overflow_policy
,
worker_warmup_cb
,
flush_interval_ms
,
worker_teardown_cb
)
{}
async_logger
(
name
,
sinks
.
begin
(),
sinks
.
end
(),
queue_size
,
overflow_policy
,
worker_warmup_cb
,
flush_interval_ms
,
worker_teardown_cb
)
{}
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
logger_
name
,
inline
spdlog
::
async_logger
::
async_logger
(
const
std
::
string
&
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
,
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
,
const
std
::
chrono
::
milliseconds
&
flush_interval_ms
,
const
std
::
function
<
void
()
>&
worker_teardown_cb
)
:
const
std
::
function
<
void
()
>&
worker_teardown_cb
)
:
async_logger
(
logger_
name
,
async_logger
(
name
,
{
{
std
::
move
(
single_sink
)
std
::
move
(
single_sink
)
},
queue_size
,
overflow_policy
,
worker_warmup_cb
,
flush_interval_ms
,
worker_teardown_cb
)
{}
},
queue_size
,
overflow_policy
,
worker_warmup_cb
,
flush_interval_ms
,
worker_teardown_cb
)
{}
...
...
include/spdlog/details/logger_impl.h
View file @
af50d5ef
...
@@ -14,8 +14,8 @@
...
@@ -14,8 +14,8 @@
// create logger with given name, sinks and the default pattern formatter
// create logger with given name, sinks and the default pattern formatter
// all other ctors will call this one
// all other ctors will call this one
template
<
class
It
>
template
<
class
It
>
inline
spdlog
::
logger
::
logger
(
std
::
string
logger_
name
,
const
It
&
begin
,
const
It
&
end
)
:
inline
spdlog
::
logger
::
logger
(
std
::
string
name
,
const
It
&
begin
,
const
It
&
end
)
:
_name
(
std
::
move
(
logger_
name
)),
_name
(
std
::
move
(
name
)),
_sinks
(
begin
,
end
),
_sinks
(
begin
,
end
),
_formatter
(
std
::
make_shared
<
pattern_formatter
>
(
"%+"
)),
_formatter
(
std
::
make_shared
<
pattern_formatter
>
(
"%+"
)),
_level
(
level
::
info
),
_level
(
level
::
info
),
...
@@ -30,14 +30,14 @@ inline spdlog::logger::logger(std::string logger_name, const It& begin, const It
...
@@ -30,14 +30,14 @@ inline spdlog::logger::logger(std::string logger_name, const It& begin, const It
}
}
// ctor with sinks as init list
// ctor with sinks as init list
inline
spdlog
::
logger
::
logger
(
const
std
::
string
&
logger_name
,
sinks_init_list
sinks_list
)
:
inline
spdlog
::
logger
::
logger
(
const
std
::
string
&
name
,
sinks_init_list
sinks
)
:
logger
(
logger_name
,
sinks_list
.
begin
(),
sinks_list
.
end
())
logger
(
name
,
sinks
.
begin
(),
sinks
.
end
())
{}
{}
// ctor with single sink
// ctor with single sink
inline
spdlog
::
logger
::
logger
(
const
std
::
string
&
logger_
name
,
spdlog
::
sink_ptr
single_sink
)
:
inline
spdlog
::
logger
::
logger
(
const
std
::
string
&
name
,
spdlog
::
sink_ptr
single_sink
)
:
logger
(
logger_
name
,
logger
(
name
,
{
{
std
::
move
(
single_sink
)
std
::
move
(
single_sink
)
})
})
...
...
include/spdlog/sinks/file_sinks.h
View file @
af50d5ef
...
@@ -71,9 +71,7 @@ public:
...
@@ -71,9 +71,7 @@ public:
std
::
size_t
max_size
,
std
::
size_t
max_files
)
:
std
::
size_t
max_size
,
std
::
size_t
max_files
)
:
_base_filename
(
std
::
move
(
base_filename
)),
_base_filename
(
std
::
move
(
base_filename
)),
_max_size
(
max_size
),
_max_size
(
max_size
),
_max_files
(
max_files
),
_max_files
(
max_files
)
_current_size
(
0
),
_file_helper
()
{
{
_file_helper
.
open
(
calc_filename
(
_base_filename
,
0
));
_file_helper
.
open
(
calc_filename
(
_base_filename
,
0
));
_current_size
=
_file_helper
.
size
();
//expensive. called only once
_current_size
=
_file_helper
.
size
();
//expensive. called only once
...
...
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