mirror of
https://github.com/gabime/spdlog.git
synced 2025-03-31 10:22:41 +08:00
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:
parent
6c5bbca0c1
commit
679fcd787f
@ -40,6 +40,12 @@ public:
|
|||||||
sinks_.erase(std::remove(sinks_.begin(), sinks_.end(), sink), sinks_.end());
|
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:
|
protected:
|
||||||
void sink_it_(const details::log_msg &msg) override
|
void sink_it_(const details::log_msg &msg) override
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user