diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-10-03 19:53:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 19:53:06 +0200 |
commit | 6fadb5df05845e4d7ed18c17c5e68008a97d9044 (patch) | |
tree | 94741f36358cae3eddcae0ca6000bb6e80b88b0f /src | |
parent | 6a2887c7503f0c0964032e7342f58f79b3ca72f5 (diff) | |
parent | 621aa65325f11769d33704b00dc15bc7dda49f0f (diff) |
Merge pull request #5310 from trofi/drop-spammy-rewrite
local-derivation-goal.cc: drop spammy "warning: rewriting hashes in..…
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/build/local-derivation-goal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build/local-derivation-goal.cc b/src/libstore/build/local-derivation-goal.cc index e91e35851..b1852a6bb 100644 --- a/src/libstore/build/local-derivation-goal.cc +++ b/src/libstore/build/local-derivation-goal.cc @@ -2208,7 +2208,7 @@ void LocalDerivationGoal::registerOutputs() auto rewriteOutput = [&]() { /* Apply hash rewriting if necessary. */ if (!outputRewrites.empty()) { - warn("rewriting hashes in '%1%'; cross fingers", actualPath); + debug("rewriting hashes in '%1%'; cross fingers", actualPath); /* FIXME: this is in-memory. */ StringSink sink; |