Commit fd17fda6 authored by Julien Muchembled's avatar Julien Muchembled

logs: remove duplicate logged information when a transaction begins

The node is already displayed in 'repr' of the transaction.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2704 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 2361b151
......@@ -373,7 +373,7 @@ class TransactionManager(object):
txn = Transaction(node, ttid)
self._ttid_dict[ttid] = txn
self._node_dict.setdefault(node, {})[ttid] = txn
neo.lib.logging.debug('Begin %s for %s', txn, node)
neo.lib.logging.debug('Begin %s', txn)
return ttid
def prepare(self, ttid, divisor, oid_list, uuid_list, msg_id):
......
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