[Checkins] SVN: grokproject/trunk/ Respect the verboseness requested by the user when running the final install.

Maurits van Rees m.van.rees at zestsoftware.nl
Mon Sep 22 11:21:31 EDT 2008


Log message for revision 91345:
  Respect the verboseness requested by the user when running the final install.
  

Changed:
  U   grokproject/trunk/CHANGES.txt
  U   grokproject/trunk/grokproject/utils.py

-=-
Modified: grokproject/trunk/CHANGES.txt
===================================================================
--- grokproject/trunk/CHANGES.txt	2008-09-22 15:17:12 UTC (rev 91344)
+++ grokproject/trunk/CHANGES.txt	2008-09-22 15:21:30 UTC (rev 91345)
@@ -4,6 +4,9 @@
 0.9 (unreleased)
 ----------------
 
+* Respect the verboseness requested by the user when running the final
+  install.
+
 * Fix behaviour that produced double/triple output when `buildout`
   was invoked several times.
 

Modified: grokproject/trunk/grokproject/utils.py
===================================================================
--- grokproject/trunk/grokproject/utils.py	2008-09-22 15:17:12 UTC (rev 91344)
+++ grokproject/trunk/grokproject/utils.py	2008-09-22 15:21:30 UTC (rev 91345)
@@ -124,11 +124,14 @@
     # First we install eggbasket.  This is also done in the
     # bootstrap.py, but that is not actually called by the bootstrap
     # lines above...
+    #
+    # Note: we do not want to make this either quiet or verbose: quiet
+    # is too quiet and verbose is too verbose. :-/
     zc.buildout.buildout.main(['install', 'eggbasket'])    
     remove_old_logger_handlers()
 
-    # The rest of the install can be a bit quieter.
-    zc.buildout.buildout.main(['-q', 'install'])
+    # Now do the rest of the install.
+    zc.buildout.buildout.main(extra_args + ['install'])
     remove_old_logger_handlers()
 
 



More information about the Checkins mailing list