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/libstore/globals.hh | |
parent | 6069b946ad3db5aa613f2691617fea8bd779c3ce (diff) |
nix-store --serve: Suppress log output on stderr when repeating a build
Diffstat (limited to 'src/libstore/globals.hh')
-rw-r--r-- | src/libstore/globals.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index 3194193bc842..a423b4e5c0f4 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -149,6 +149,11 @@ struct Settings { before being killed (0 means no limit). */ unsigned long maxLogSize; + /* When build-repeat > 0 and verboseBuild == true, whether to + print repeated builds (i.e. builds other than the first one) to + stderr. Hack to prevent Hydra logs from being polluted. */ + bool printRepeatedBuilds = true; + /* How often (in seconds) to poll for locks. */ unsigned int pollInterval; |