Add set_sinks method to dist_sink

This allows users to set exactly the sinks they want, even if other
unknown application code has added bespoke sinks in the meantime.
This commit is contained in:
Jeremy Nimmer 2018-08-29 12:29:32 -04:00
parent 6c5bbca0c1
commit 679fcd787f
1 changed files with 6 additions and 0 deletions

View File

@ -40,6 +40,12 @@ public:
sinks_.erase(std::remove(sinks_.begin(), sinks_.end(), sink), sinks_.end());
}
void set_sinks(std::vector<std::shared_ptr<sink>> sinks)
{
std::lock_guard<Mutex> lock(base_sink<Mutex>::mutex_);
sinks_ = std::move(sinks);
}
protected:
void sink_it_(const details::log_msg &msg) override
{