fixed a broken trace logging line.

This commit is contained in:
Boaz Leskes 2013-11-10 22:59:02 +01:00
parent 2c5d483be1
commit 81928bd323
1 changed files with 2 additions and 1 deletions

View File

@ -625,7 +625,8 @@ public class IndicesClusterStateService extends AbstractLifecycleComponent<Indic
// for master to confirm a shard started message (either master failover, or a cluster event before
// we managed to tell the master we started), mark us as started
if (logger.isTraceEnabled()) {
logger.trace("[{}][{}] master [{}] marked shard as initializing, but shard has state [{}], mark shard as started", indexShard.state());
logger.trace("{} master marked shard as initializing, but shard has state [{}], resending shard started",
indexShard.shardId(), indexShard.state());
}
shardStateAction.shardStarted(shardRouting, indexMetaData.getUUID(),
"master " + nodes.masterNode() + " marked shard as initializing, but shard state is [" + indexShard.state() + "], mark shard as started");