Commit d8d12354 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Decrease logging level of some messages.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1011 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent f2f0e7be
...@@ -66,7 +66,7 @@ class ConnectionPool(object): ...@@ -66,7 +66,7 @@ class ConnectionPool(object):
# Loop until a connection is obtained. # Loop until a connection is obtained.
while True: while True:
logging.info('trying to connect to %s - %s', node, node.getState()) logging.debug('trying to connect to %s - %s', node, node.getState())
app.setNodeReady() app.setNodeReady()
conn = MTClientConnection(app.em, app.storage_event_handler, addr, conn = MTClientConnection(app.em, app.storage_event_handler, addr,
connector_handler=app.connector_handler, connector_handler=app.connector_handler,
...@@ -732,7 +732,7 @@ class Application(object): ...@@ -732,7 +732,7 @@ class Application(object):
cell_list = self._getCellListForTID(self.local_var.tid, writable=True) cell_list = self._getCellListForTID(self.local_var.tid, writable=True)
self.local_var.voted_counter = 0 self.local_var.voted_counter = 0
for cell in cell_list: for cell in cell_list:
logging.info("voting object %s %s" %(cell.getServer(), cell.getState())) logging.debug("voting object %s %s" %(cell.getServer(), 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