cosmetic for tracing API calls
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 11 Mar 2013 08:02:03 +0000 (09:02 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 11 Mar 2013 08:02:03 +0000 (09:02 +0100)
engine/manifoldapi.py

index 21a9ec9..40b95c1 100644 (file)
@@ -25,7 +25,7 @@ class ManifoldAPI:
   def __getattr__(self, methodName):
       def func(*args, **kwds):
         result=getattr(self.proxy, methodName)(self.auth, *args, **kwds)
-        if debug: print methodName, self.auth, self.url,'->',result
+        if debug: print '===> backend call',methodName, self.auth, self.url,'->',result
         return result
       return func