From d48845006f4fdd65c7f03782a45a785936edf8e3 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 11 Mar 2013 09:02:03 +0100 Subject: [PATCH] cosmetic for tracing API calls --- engine/manifoldapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/manifoldapi.py b/engine/manifoldapi.py index 21a9ec9c..40b95c1d 100644 --- a/engine/manifoldapi.py +++ b/engine/manifoldapi.py @@ -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 -- 2.43.0