Exposed logger sinks.

This commit is contained in:
Therenall 2016-09-24 15:14:05 -04:00
parent 9e37f5cef9
commit 66b08294ca
2 changed files with 7 additions and 2 deletions

View File

@ -291,3 +291,8 @@ inline bool spdlog::logger::_should_flush_on(const details::log_msg &msg)
const auto flush_level = _flush_level.load(std::memory_order_relaxed);
return (msg.level >= flush_level) && (msg.level != level::off);
}
inline const std::vector<spdlog::sink_ptr>& spdlog::logger::sinks() const
{
return _sinks;
}

View File

@ -68,6 +68,8 @@ public:
virtual void flush();
const std::vector<sink_ptr>& sinks() const;
protected:
virtual void _sink_it(details::log_msg&);
virtual void _set_pattern(const std::string&);
@ -90,5 +92,3 @@ protected:
}
#include <spdlog/details/logger_impl.h>