entities/adapters.py
branchstable
changeset 6011 b5f15098f282
parent 5981 3472c051da77
child 6155 16fad8d00787
--- a/entities/adapters.py	Mon Jul 26 12:06:58 2010 +0200
+++ b/entities/adapters.py	Mon Jul 26 12:07:00 2010 +0200
@@ -294,7 +294,7 @@
             _done = set()
         for child in self.children():
             if child.eid in _done:
-                self.error('loop in %s tree', child.__regid__.lower())
+                self.error('loop in %s tree: %s', child.__regid__.lower(), child)
                 continue
             yield child
             _done.add(child.eid)
@@ -320,7 +320,7 @@
         entity = adapter.entity
         while entity is not None:
             if entity.eid in path:
-                self.error('loop in %s tree', entity.__regid__.lower())
+                self.error('loop in %s tree: %s', entity.__regid__.lower(), entity)
                 break
             path.append(entity.eid)
             try: