Agora  1.2.0
Agora project
sink-inl.h
Go to the documentation of this file.
1 // Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
2 // Distributed under the MIT License (http://opensource.org/licenses/MIT)
3 
4 #pragma once
5 
6 #ifndef SPDLOG_HEADER_ONLY
7 # include <spdlog/sinks/sink.h>
8 #endif
9 
10 #include <spdlog/common.h>
11 
13 {
14  return msg_level >= level_.load(std::memory_order_relaxed);
15 }
16 
18 {
19  level_.store(log_level, std::memory_order_relaxed);
20 }
21 
23 {
24  return static_cast<spdlog::level::level_enum>(level_.load(std::memory_order_relaxed));
25 }
spdlog::sinks::sink::level
level::level_enum level() const
Definition: sink-inl.h:22
spdlog::level::level_enum
level_enum
Definition: common.h:211
spdlog::sinks::sink::should_log
bool should_log(level::level_enum msg_level) const
Definition: sink-inl.h:12
SPDLOG_INLINE
#define SPDLOG_INLINE
Definition: common.h:42
spdlog::sinks::sink::set_level
void set_level(level::level_enum log_level)
Definition: sink-inl.h:17
spdlog::sinks::sink::level_
level_t level_
Definition: sink.h:27
common.h
sink.h