Commit 47be3284 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Add missing dump() calls on oids in debug messages.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@444 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent f09d3688
......@@ -367,12 +367,12 @@ class Application(object):
if noid != oid:
# Oops, try with next node
logging.error('got wrong oid %s instead of %s from node %s',
noid, oid, cell.getServer())
noid, dump(oid), cell.getServer())
continue
elif checksum != makeChecksum(data):
# Check checksum.
logging.error('wrong checksum from node %s for oid %s',
cell.getServer(), oid)
cell.getServer(), dump(oid))
continue
else:
# Everything looks alright.
......
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