aboutsummaryrefslogtreecommitdiff
path: root/src/nix-store
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-05-04 14:44:42 -0600
committerBen Burdette <bburdette@gmail.com>2020-05-04 14:44:42 -0600
commit8c8f2b74ec3fe37f8661c8411749965b6e8d44d2 (patch)
tree045632346931ed04f809281120ce59c20f2a0efc /src/nix-store
parentafaa541013549c254f9c54e0865dc254973eea96 (diff)
log as warning
Diffstat (limited to 'src/nix-store')
-rw-r--r--src/nix-store/nix-store.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index 2e2276b4a..57063d42f 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -841,8 +841,7 @@ static void opServe(Strings opFlags, Strings opArgs)
for (auto & p : willSubstitute) subs.emplace_back(p.clone());
store->buildPaths(subs);
} catch (Error & e) {
- // logWarning(e.info()) TODO:
- _printError("warning: %1%", e.msg());
+ logWarning(e.info());
}
}