better log message for none gateway, also make it debug level

This commit is contained in:
Shay Banon 2013-08-13 00:19:32 +02:00
parent c6a803b677
commit 9126d11824
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class NoneIndexShardGateway extends AbstractIndexShardComponent implement
// in the none case, we simply start the shard // in the none case, we simply start the shard
// clean the store, there should be nothing there... // clean the store, there should be nothing there...
try { try {
logger.info("deleting shard content"); logger.debug("cleaning shard content before creation");
indexShard.store().deleteContent(); indexShard.store().deleteContent();
} catch (IOException e) { } catch (IOException e) {
logger.warn("failed to clean store before starting shard", e); logger.warn("failed to clean store before starting shard", e);