Logging shard level multi percolate errors under debug rather than trace

This commit is contained in:
Boaz Leskes 2013-08-29 14:14:12 +02:00
parent 649108656d
commit ffd019c07e
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class TransportShardMultiPercolateAction extends TransportShardSingleOper
try {
responseItem.response = percolatorService.percolate(item.request);
} catch (Throwable e) {
logger.trace("[{}][{}] failed to multi percolate", e, request.index(), request.shardId());
logger.debug("[{}][{}] failed to multi percolate", e, request.index(), request.shardId());
if (TransportActions.isShardNotAvailableException(e)) {
throw new ElasticSearchException("", e);
} else {