diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-07-17T09·38+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-07-17T09·38+0200 |
commit | 4ec6eb1fdf513d93090d5898762d1186eb6feb0d (patch) | |
tree | 1b8740b470ef37fda5b5dd6f08ad417eb2335a6e | |
parent | f3e432305ac51685e856699a0b2c4f0a65511659 (diff) |
Fix accidental printError
-rw-r--r-- | src/libstore/store-api.cc | 2 |
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); } }); |