Commit 22310972 authored by Vincent Pelletier's avatar Vincent Pelletier

Give multiple parameters to logger instead of using % operator.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1767 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 423eb067
...@@ -578,8 +578,8 @@ class Application(object): ...@@ -578,8 +578,8 @@ class Application(object):
transaction.description, dumps(transaction._extension), transaction.description, dumps(transaction._extension),
local_var.data_dict.keys()) local_var.data_dict.keys())
for cell in self._getCellListForTID(tid, writable=True): for cell in self._getCellListForTID(tid, writable=True):
logging.debug("voting object %s %s" %(cell.getAddress(), logging.debug("voting object %s %s", cell.getAddress(),
cell.getState())) cell.getState())
conn = self.cp.getConnForCell(cell) conn = self.cp.getConnForCell(cell)
if conn is None: if conn is None:
continue continue
......
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