Removed spdlog::default_level and its usage in registry

This commit is contained in:
gabime
2019-08-16 19:04:49 +03:00
parent a8b5e3da29
commit 01eb59ca9b
3 changed files with 2 additions and 9 deletions

View File

@@ -86,11 +86,6 @@ SPDLOG_INLINE void logger::set_level(level::level_enum log_level)
level_.store(log_level);
}
SPDLOG_INLINE level::level_enum logger::default_level()
{
return static_cast<level::level_enum>(SPDLOG_ACTIVE_LEVEL);
}
SPDLOG_INLINE level::level_enum logger::level() const
{
return static_cast<level::level_enum>(level_.load(std::memory_order_relaxed));