about summary refs log tree commit diff
path: root/src/libstore/store-api.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-07-17T09·38+0200
committerEelco Dolstra <edolstra@gmail.com>2017-07-17T09·38+0200
commit4ec6eb1fdf513d93090d5898762d1186eb6feb0d (patch)
tree1b8740b470ef37fda5b5dd6f08ad417eb2335a6e /src/libstore/store-api.cc
parentf3e432305ac51685e856699a0b2c4f0a65511659 (diff)
Fix accidental printError
Diffstat (limited to '')
-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 339445aa064a..27bfbcb8f129 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);
             }
         });