diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-07-19T23·52+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-07-19T23·52+0200 |
commit | ccf31dbc25b8fe1ac0fba33c7205ba75d4f0adfe (patch) | |
tree | 4bb4bc7b590582a178dcbbfd24c43e6ede05d5fb /src/libstore | |
parent | db55940d9e9fd502b17522d011dfd941e3f69c5d (diff) |
nix-copy-closure: Add -v flag
And make exportPath() less spammy by default.
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/local-store.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index c76fde1d0163..978bca28d7fa 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -1510,7 +1510,7 @@ void LocalStore::exportPath(const Path & path, bool sign, { assertStorePath(path); - printMsg(lvlInfo, format("exporting path ‘%1%’") % path); + printMsg(lvlTalkative, format("exporting path ‘%1%’") % path); if (!isValidPath(path)) throw Error(format("path ‘%1%’ is not valid") % path); @@ -1613,6 +1613,8 @@ Path LocalStore::importPath(bool requireSignature, Source & source) Path dstPath = readStorePath(hashAndReadSource); + printMsg(lvlTalkative, format("importing path ‘%1%’") % dstPath); + PathSet references = readStorePaths<PathSet>(hashAndReadSource); Path deriver = readString(hashAndReadSource); |