Commit 5b48a7dd authored by Grégory Wisniewski's avatar Grégory Wisniewski

Dump tid in log.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2321 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 3496e36e
......@@ -196,7 +196,8 @@ class VerificationManager(BaseServiceHandler):
def answerUnfinishedTransactions(self, conn, tid_list):
uuid = conn.getUUID()
logging.info('got unfinished transactions %s from %r', tid_list, conn)
logging.info('got unfinished transactions %s from %r',
[dump(tid) for tid in tid_list], conn)
if not self._gotAnswerFrom(uuid):
return
self._tid_set.update(tid_list)
......
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