IndicesStore fix logging format

This commit is contained in:
Boaz Leskes 2014-07-22 07:47:40 +03:00
parent fee22fc0b2
commit a344fe6590
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ public class IndicesStore extends AbstractComponent implements ClusterStateListe
if (nodeEnv.hasNodeFile()) {
File[] shardLocations = nodeEnv.shardLocations(shardId);
if (FileSystemUtils.exists(shardLocations)) {
logger.debug("[{}][{}] deleting shard that is no longer used", shardId);
logger.debug("{} deleting shard that is no longer used", shardId);
FileSystemUtils.deleteRecursively(shardLocations);
}
}