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
12470f62
Commit
12470f62
authored
Jul 17, 2019
by
gabime
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert null_sink changes
parent
a82d0e2f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
include/spdlog/sinks/null_sink.h
include/spdlog/sinks/null_sink.h
+1
-10
No files found.
include/spdlog/sinks/null_sink.h
View file @
12470f62
...
@@ -8,7 +8,6 @@
...
@@ -8,7 +8,6 @@
#include "spdlog/details/synchronous_factory.h"
#include "spdlog/details/synchronous_factory.h"
#include <mutex>
#include <mutex>
#include <stdio.h>
namespace
spdlog
{
namespace
spdlog
{
namespace
sinks
{
namespace
sinks
{
...
@@ -17,15 +16,7 @@ template<typename Mutex>
...
@@ -17,15 +16,7 @@ template<typename Mutex>
class
null_sink
:
public
base_sink
<
Mutex
>
class
null_sink
:
public
base_sink
<
Mutex
>
{
{
protected:
protected:
void
sink_it_
(
const
details
::
log_msg
&
)
override
void
sink_it_
(
const
details
::
log_msg
&
)
override
{}
{
// prevent optimizer to remove this sink altogether (and do useful check while at it).
if
(
this
->
level
()
==
level
::
off
)
{
printf
(
"null_sink: should never be called if its level is off!
\n
"
);
abort
();
}
}
void
flush_
()
override
{}
void
flush_
()
override
{}
};
};
...
...
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