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

Reduce level of some log messages.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1763 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 70a311c5
...@@ -364,7 +364,7 @@ class NodeManager(object): ...@@ -364,7 +364,7 @@ class NodeManager(object):
node = klass(self, address=addr, uuid=uuid) node = klass(self, address=addr, uuid=uuid)
node.setState(state) node.setState(state)
self.add(node) self.add(node)
logging.info('create node %s %s %s %s' % log_args) logging.debug('create node %s %s %s %s' % log_args)
self.log() self.log()
def log(self): def log(self):
......
...@@ -51,7 +51,7 @@ class InitializationHandler(BaseMasterHandler): ...@@ -51,7 +51,7 @@ class InitializationHandler(BaseMasterHandler):
if cell.getUUID() == app.uuid: if cell.getUUID() == app.uuid:
assigned_to_me = True assigned_to_me = True
if not assigned_to_me: if not assigned_to_me:
logging.warning('drop data for partition %d' % offset) logging.debug('drop data for partition %d' % offset)
# not for me, delete objects database # not for me, delete objects database
app.dm.dropPartition(app.pt.getPartitions(), offset) app.dm.dropPartition(app.pt.getPartitions(), offset)
......
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