mailr15420 - /1.3/relax.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on March 01, 2012 - 14:08:
Author: bugman
Date: Thu Mar  1 14:08:02 2012
New Revision: 15420

URL: http://svn.gna.org/viewcvs/relax?rev=15420&view=rev
Log:
The relax --debug command line option now turns the multi-processor package 
verbosity to 1.

The default is currently 0, but the debugging flag changes this.


Modified:
    1.3/relax.py

Modified: 1.3/relax.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/relax.py?rev=15420&r1=15419&r2=15420&view=diff
==============================================================================
--- 1.3/relax.py (original)
+++ 1.3/relax.py Thu Mar  1 14:08:02 2012
@@ -88,7 +88,10 @@
 
     # Set up the multi-processor elements.
     callbacks = Application_callback(master=relax)
-    processor = load_multiprocessor(relax.multiprocessor_type, callbacks, 
processor_size=relax.n_processors, verbosity=0)
+    verbosity = 0
+    if status.debug:
+        verbosity = 1
+    processor = load_multiprocessor(relax.multiprocessor_type, callbacks, 
processor_size=relax.n_processors, verbosity=verbosity)
 
     # Place the processor fabric intro string into the info box.
     info = Info_box()




Related Messages


Powered by MHonArc, Updated Thu Mar 01 14:20:02 2012