diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-11-12T11·08+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-11-12T11·08+0000 |
commit | a519bb063505a8d39e6b1e12f130d66771676e23 (patch) | |
tree | 409ae5b6acf3a63e8fe3b6669c2f452d4a8b8841 /src/libstore/remote-store.cc | |
parent | 96598e7b06dad0de082730cab8992eacc440e535 (diff) |
* Some somewhat ad hoc mechanism to allow the build farm to monitor
build progress.
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index b896734416d1..7e5fa2d865d9 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -183,8 +183,11 @@ void RemoteStore::setOptions() writeInt(maxSilentTime, to); if (GET_PROTOCOL_MINOR(daemonVersion) >= 2) writeInt(useBuildHook, to); - if (GET_PROTOCOL_MINOR(daemonVersion) >= 4) + if (GET_PROTOCOL_MINOR(daemonVersion) >= 4) { writeInt(buildVerbosity, to); + writeInt(logType, to); + writeInt(printBuildTrace, to); + } processStderr(); } |