diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-12-10 17:11:39 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-12-10 17:11:56 +0100 |
commit | c6a1bcd0ec1ed443947ae7151e32dd6827dfe53e (patch) | |
tree | e36ae170247b94b195776f52c506e6f8aa9a8eb1 /src/nix | |
parent | a8f533b66417a1025a468cae3068bd2f5c06e811 (diff) |
nix store make-content-addressable: Show rewritten path
Diffstat (limited to 'src/nix')
-rw-r--r-- | src/nix/make-content-addressable.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/make-content-addressable.cc b/src/nix/make-content-addressable.cc index 0dade90ef..5165c4804 100644 --- a/src/nix/make-content-addressable.cc +++ b/src/nix/make-content-addressable.cc @@ -88,7 +88,7 @@ struct CmdMakeContentAddressable : StorePathsCommand, MixJSON }; if (!json) - printInfo("rewrote '%s' to '%s'", pathS, store->printStorePath(info.path)); + notice("rewrote '%s' to '%s'", pathS, store->printStorePath(info.path)); auto source = sinkToSource([&](Sink & nextSink) { RewritingSink rsink2(oldHashPart, std::string(info.path.hashPart()), nextSink); |