summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--http/logging.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/http/logging.hpp b/http/logging.hpp
index 1679777b7b..2928f968e0 100644
--- a/http/logging.hpp
+++ b/http/logging.hpp
@@ -171,7 +171,7 @@ const void* logPtr(T p)
template <LogLevel level>
inline void vlog(const FormatString& format, std::format_args&& args)
{
- if constexpr (bmcwebCurrentLoggingLevel <= level)
+ if constexpr (bmcwebCurrentLoggingLevel < level)
{
return;
}