about summary refs log tree commit diff
path: root/src/nix-store/nix-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2016-12-06T16·43+0100
committerEelco Dolstra <edolstra@gmail.com>2016-12-06T16·43+0100
commit7a3e7d0e61a651cb929b88a23f930785cfef3774 (patch)
tree8137b3314bd3d2a47822f7bf60d1f7abb8caa1cf /src/nix-store/nix-store.cc
parent6069b946ad3db5aa613f2691617fea8bd779c3ce (diff)
nix-store --serve: Suppress log output on stderr when repeating a build
Diffstat (limited to '')
-rw-r--r--src/nix-store/nix-store.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index 2e530ae52a..77ad517a71 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) {