shorter debug message
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 15 Dec 2011 16:52:45 +0000 (17:52 +0100)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 15 Dec 2011 16:52:45 +0000 (17:52 +0100)
sfa/plc/plshell.py

index eea33c0..d40e0b2 100644 (file)
@@ -81,6 +81,6 @@ class PlShell:
             if not actual_name:
                 raise Exception, "Illegal method call %s for PL driver"%(name)
             result=getattr(self.proxy, actual_name)(self.plauth, *args, **kwds)
-            logger.debug('%s (%s) returned ... %s'%(name,actual_name,result))
+            logger.debug('%s (%s) returned ... '%(name,actual_name))
             return result
         return func