aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-07-17 11:38:15 +0200
committerEelco Dolstra <edolstra@gmail.com>2017-07-17 11:38:15 +0200
commit4ec6eb1fdf513d93090d5898762d1186eb6feb0d (patch)
tree1b8740b470ef37fda5b5dd6f08ad417eb2335a6e
parentf3e432305ac51685e856699a0b2c4f0a65511659 (diff)
Fix accidental printError
-rw-r--r--src/libstore/store-api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc
index 339445aa0..27bfbcb8f 100644
--- a/src/libstore/store-api.cc
+++ b/src/libstore/store-api.cc
@@ -614,7 +614,7 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
checkInterrupt();
if (!dstStore->isValidPath(storePath)) {
- printError("copying ā€˜%sā€™...", storePath);
+ printInfo("copying ā€˜%sā€™...", storePath);
copyStorePath(srcStore, dstStore, storePath, repair, checkSigs);
}
});