aboutsummaryrefslogtreecommitdiff
path: root/src/libutil
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/util.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc
index 5377f093b..c8965baa8 100644
--- a/src/libutil/util.cc
+++ b/src/libutil/util.cc
@@ -58,9 +58,7 @@ std::optional<std::string> getEnvNonEmpty(const std::string & key) {
auto value = getEnv(key);
if (value == "") {
// TODO: determine whether this should be a warning or an error.
- logWarning({
- .msg = hintfmt("ignoring the '%1%' env variable, its value has been set to \"\"", key)
- });
+ warn("ignoring the '%1%' env variable, its value has been set to \"\"", key);
return std::nullopt;
} else {
return value;