Commit deb30644 authored by Nicolas Delaby's avatar Nicolas Delaby

Remove LOGs

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@14283 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f8e6f654
......@@ -1121,14 +1121,12 @@ class XMLSyncUtils(XMLSyncUtilsMixin):
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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment