summaryrefslogtreecommitdiff
path: root/test/utils
diff options
context:
space:
mode:
Diffstat (limited to 'test/utils')
-rw-r--r--test/utils/logging/log_config.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils/logging/log_config.hpp b/test/utils/logging/log_config.hpp
index 816e73b9..3b920917 100644
--- a/test/utils/logging/log_config.hpp
+++ b/test/utils/logging/log_config.hpp
@@ -24,8 +24,8 @@
#include "src/buildtool/logging/log_sink_cmdline.hpp"
static auto ReadLogLevelFromEnv() -> LogLevel {
- LogLevel const kDefaultTestLogLevel{LogLevel::Error};
- LogLevel const kMaximumTestLogLevel{LogLevel::Trace};
+ static constexpr LogLevel kDefaultTestLogLevel = LogLevel::Error;
+ static constexpr LogLevel kMaximumTestLogLevel = LogLevel::Trace;
auto log_level{kDefaultTestLogLevel};