about summary refs log tree commit diff
path: root/src/libstore
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-11T21·05-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-11T21·05-0400
commit9dbda2b3fe98014687ae5cbbf16866ca6cf34f64 (patch)
tree58f2f0b221f88bafe85bceb8c2a0495a9d7bdc56 /src/libstore
parenta2785b739169832f09285c81695c90a3aac3f731 (diff)
Remove debug line
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/build.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index 391db9e233..4be46cfd34 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -1153,8 +1153,6 @@ void DerivationGoal::tryToBuild()
         return;
     }
 
-    printMsg(lvlError, format("BLOCKERS: %1%") % showPaths(validPaths));
-
     /* If any of the outputs already exist but are not valid, delete
        them. */
     foreach (DerivationOutputs::iterator, i, drv.outputs) {
@@ -1750,7 +1748,7 @@ void DerivationGoal::startBuilder()
 #endif
     } else { // !useChroot
         if (validPaths.size() > 0)
-            throw Error(format("derivation `%1%' is blocked by its output paths %2%") % drvPath % showPaths(validPaths));
+            throw Error(format("derivation `%1%' is blocked by its output path(s) %2%") % drvPath % showPaths(validPaths));
     }