python3: remove debugging prints (#38094)

This commit is contained in:
Frédéric Péters 2019-11-26 14:25:11 +01:00
parent 3cb413c581
commit e87e088381
2 changed files with 0 additions and 3 deletions

View File

@ -97,11 +97,9 @@ class AbeliumDominoRegisterFamilyWorkflowStatusItem(WorkflowStatusJumpItem):
except ValueError:
continue
max_i = max(i, max_i)
print 'enfant', name, i-1, value
setattr(children[i-1], name, value)
elif m2:
name = m2.group(1)
print 'family', name, value
setattr(family, name, value)
for child1, child2 in zip(family.children, children[:max_i]):
child1.__dict__.update(child2.__dict__)

View File

@ -423,7 +423,6 @@ class DominoWs(object):
'''Call SOAP method named function_name passing args list as parameters.
Any error is converted into the DominoException class.'''
print 'call', function_name, args
try:
self.logger.debug(('soap call to %s(%s)' % (function_name, args)).encode('utf-8'))