1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-01 02:42:41 +08:00
spdlog/src/sinks/sink.cpp

22 lines
583 B
C++
Raw Normal View History

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
#include <spdlog/common.h>
2019-04-27 07:34:50 +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);
}
void spdlog::sinks::sink::set_level(level level)
2019-04-27 07:34:50 +08:00
{
level_.store(level, std::memory_order_relaxed);
2019-04-27 07:34:50 +08:00
}
spdlog::level spdlog::sinks::sink::log_level() const {
return static_cast<spdlog::level>(level_.load(std::memory_order_relaxed));
2019-04-27 07:34:50 +08:00
}