Commit fa175d63 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Merge pull request #289 from thomas-frantz/expose_sinks

Exposed logger sinks.
parents 9e37f5ce 66b08294
......@@ -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;
}
......@@ -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>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment