2019-06-04 05:09:16 +08:00
|
|
|
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
|
2019-05-12 01:06:17 +08:00
|
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
|
|
|
|
|
|
|
2023-09-25 01:26:32 +08:00
|
|
|
#include <spdlog/sinks/sink.h>
|
2019-05-13 05:09:00 +08:00
|
|
|
|
2019-11-07 03:09:30 +08:00
|
|
|
#include <spdlog/common.h>
|
2019-04-27 07:34:50 +08:00
|
|
|
|
2023-09-24 18:02:30 +08:00
|
|
|
bool spdlog::sinks::sink::should_log(spdlog::level msg_level) const
|
2019-04-27 07:34:50 +08:00
|
|
|
{
|
|
|
|
return msg_level >= level_.load(std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
2023-09-24 18:02:30 +08:00
|
|
|
void spdlog::sinks::sink::set_level(level level)
|
2019-04-27 07:34:50 +08:00
|
|
|
{
|
2023-09-23 22:59:51 +08:00
|
|
|
level_.store(level, std::memory_order_relaxed);
|
2019-04-27 07:34:50 +08:00
|
|
|
}
|
|
|
|
|
2023-09-24 18:02:30 +08:00
|
|
|
spdlog::level spdlog::sinks::sink::log_level() const {
|
2023-09-23 22:59:51 +08:00
|
|
|
return static_cast<spdlog::level>(level_.load(std::memory_order_relaxed));
|
2019-04-27 07:34:50 +08:00
|
|
|
}
|