mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-26 10:31:34 +08:00
Revert null_sink changes
This commit is contained in:
parent
a82d0e2f57
commit
12470f6221
@ -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>
|
|||||||
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 {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user