]> SALOME platform Git repositories - tools/sat.git/commitdiff
Salome HOME
best docstring src/debug.py
authorChristian Van Wambeke <christian.van-wambeke@cea.fr>
Wed, 21 Mar 2018 09:26:23 +0000 (10:26 +0100)
committerChristian Van Wambeke <christian.van-wambeke@cea.fr>
Wed, 21 Mar 2018 09:26:23 +0000 (10:26 +0100)
src/debug.py

index a9444a9bd6d14f46f4893052da5cb91b33310668..e1ab251b1a0af00cd5a48eec7feda9b88660a1fa 100644 (file)
@@ -38,10 +38,10 @@ to set no show message as production phase:
 
 to set show message temporary as development phase, only in a method:
 >> def aMethodToDebug(...):
->> DBG.push_debug(True)              #force show as appended status
->> etc. method code with some DBG.write()
->> DBG.pop_debug(False)              #restore previous status (show or not show)
->> return
+>>   DBG.push_debug(True)              #force show as appended status
+>>   etc. method code with some DBG.write()
+>>   DBG.pop_debug()                   #restore previous status (show or not show)
+>>   return
 
 to set a message for future fix, as temporary problem to not forget:
 DBG.tofix("aTitle", aVariable, True/False) #True/False in production shown, or not