From 4ec6eb1fdf513d93090d5898762d1186eb6feb0d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 17 Jul 2017 11:38:15 +0200 Subject: Fix accidental printError --- src/libstore/store-api.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 srcStore, ref dstStore, const PathSet & storePa checkInterrupt(); if (!dstStore->isValidPath(storePath)) { - printError("copying ā€˜%sā€™...", storePath); + printInfo("copying ā€˜%sā€™...", storePath); copyStorePath(srcStore, dstStore, storePath, repair, checkSigs); } }); -- cgit 1.4.1