mirror of
https://github.com/gabime/spdlog.git
synced 2026-04-10 11:34:29 +08:00
Fix should_log comment (#3534)
This commit is contained in:
@@ -258,7 +258,7 @@ public:
|
|||||||
log(level::critical, msg);
|
log(level::critical, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
// return true logging is enabled for the given level.
|
// return true if logging is enabled for the given level.
|
||||||
bool should_log(level::level_enum msg_level) const {
|
bool should_log(level::level_enum msg_level) const {
|
||||||
return msg_level >= level_.load(std::memory_order_relaxed);
|
return msg_level >= level_.load(std::memory_order_relaxed);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user