diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-05-13T19·35+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-05-13T19·35+0000 |
commit | 25db6224544be0df483a661f5e2cc1ed595525ae (patch) | |
tree | dd497e6148b88ec797c01d2e1310a663e86281fb /src/libstore | |
parent | 3426d19547c889700a00e97fb62966ebd755f88b (diff) |
* Load balancing. `build-remote.pl' will only execute up to a
per-machine maximum number of parallel jobs on a remote machine.
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/normalise.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/normalise.cc b/src/libstore/normalise.cc index 3ae3fb7891e7..0673814bab0b 100644 --- a/src/libstore/normalise.cc +++ b/src/libstore/normalise.cc @@ -332,7 +332,7 @@ void Normaliser::run() while (!goals.empty()) { - printMsg(lvlVomit, "main loop"); + debug("main loop - starting jobs"); /* Start building as many buildable goals as possible. */ bool madeProgress = false; |