Commit b650d5f7 authored by Andreas Jung's avatar Andreas Jung

Collector #146408: fixed broken logger calls

parent a3126269
......@@ -819,7 +819,7 @@ class TransientObjectContainer(SimpleItem):
LOG.warning(
'%s failed when calling %s in %s' % (name,callback,
'/'.join(path)),
exc_info=True()
exc_info=True
)
finally:
setSecurityManager(sm)
......@@ -828,7 +828,7 @@ class TransientObjectContainer(SimpleItem):
path = self.getPhysicalPath()
LOG.warning(
err % (name, '/'.join(path), callback),
exc_info=True()
exc_info=True
)
def getId(self):
......
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