diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2016-12-06T16·43+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2016-12-06T16·43+0100 |
commit | 7a3e7d0e61a651cb929b88a23f930785cfef3774 (patch) | |
tree | 8137b3314bd3d2a47822f7bf60d1f7abb8caa1cf /src/nix-store/nix-store.cc | |
parent | 6069b946ad3db5aa613f2691617fea8bd779c3ce (diff) |
nix-store --serve: Suppress log output on stderr when repeating a build
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r-- | src/nix-store/nix-store.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 2e530ae52a3a..77ad517a7170 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -842,6 +842,7 @@ static void opServe(Strings opFlags, Strings opArgs) settings.maxLogSize = readInt(in); if (GET_PROTOCOL_MINOR(clientVersion) >= 3) settings.set("build-repeat", std::to_string(readInt(in))); + settings.printRepeatedBuilds = false; }; while (true) { |