commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r6991 - trunk/gnue-common/src/apps


From: johannes
Subject: [gnue] r6991 - trunk/gnue-common/src/apps
Date: Fri, 11 Feb 2005 01:39:25 -0600 (CST)

Author: johannes
Date: 2005-02-11 01:39:23 -0600 (Fri, 11 Feb 2005)
New Revision: 6991

Modified:
   trunk/gnue-common/src/apps/GDebug.py
Log:
Fixed gBeginFunc () and gEndFunc () to use the new debug-level-concpet


Modified: trunk/gnue-common/src/apps/GDebug.py
===================================================================
--- trunk/gnue-common/src/apps/GDebug.py        2005-02-10 20:11:25 UTC (rev 
6990)
+++ trunk/gnue-common/src/apps/GDebug.py        2005-02-11 07:39:23 UTC (rev 
6991)
@@ -170,7 +170,7 @@
   @param level: the debug-level the message will be logged in
   """
 
-  if level in _DEBUG_LEVELS:
+  if not level in _DEBUG_LEVELS:
     return
 
   # Get the caller's frame
@@ -235,7 +235,7 @@
       be in the debug-message, unless the result is not None.
   """
 
-  if level in _DEBUG_LEVELS:
+  if not level in _DEBUG_LEVELS:
     return
 
   # Get the caller's frame





reply via email to

[Prev in Thread] Current Thread [Next in Thread]