[Erp5-report] r14283 - /erp5/trunk/products/ERP5SyncML/XMLSyncUtils.py

nobody at svn.erp5.org nobody at svn.erp5.org
Wed May 2 09:50:31 CEST 2007


Author: nicolas
Date: Wed May  2 09:50:31 2007
New Revision: 14283

URL: http://svn.erp5.org?rev=14283&view=rev
Log:
Remove LOGs

Modified:
    erp5/trunk/products/ERP5SyncML/XMLSyncUtils.py

Modified: erp5/trunk/products/ERP5SyncML/XMLSyncUtils.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5SyncML/XMLSyncUtils.py?rev=14283&r1=14282&r2=14283&view=diff
==============================================================================
--- erp5/trunk/products/ERP5SyncML/XMLSyncUtils.py (original)
+++ erp5/trunk/products/ERP5SyncML/XMLSyncUtils.py Wed May  2 09:50:31 2007
@@ -1121,14 +1121,12 @@
     if conduit_name.startswith('Products'):
       path = conduit_name
       conduit_name = conduit_name.split('.')[-1]
-      LOG('SyncMLUtils.SyncModif (path,conduit_name)',0,(path,conduit_name))
       conduit_module = __import__(path, globals(), locals(), [''])
       conduit = getattr(conduit_module, conduit_name)()
     else:
       conduit_module = __import__('.'.join([Conduit.__name__, conduit_name]), 
                                   globals(), locals(), [''])
       conduit = getattr(conduit_module, conduit_name)()
-    LOG('SyncModif, subscriber:',0,subscriber)
     # Then apply the list of actions
     (xml_confirmation,has_next_action,cmd_id) = self.applyActionList(cmd_id=cmd_id,
                                          domain=domain,




More information about the Erp5-report mailing list