mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +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());
|
||||
}
|
||||
|
||||
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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user