fix log to trace

This commit is contained in:
Shay Banon 2013-09-22 03:18:54 +02:00
parent b28c82a1e6
commit 74e8d299d6
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class TransportGetMappingsAction extends TransportClusterInfoAction<GetMa
@Override @Override
protected void doMasterOperation(final GetMappingsRequest request, final ClusterState state, final ActionListener<GetMappingsResponse> listener) throws ElasticSearchException { protected void doMasterOperation(final GetMappingsRequest request, final ClusterState state, final ActionListener<GetMappingsResponse> listener) throws ElasticSearchException {
logger.debug("Serving getMapping request based on version {}", state.version()); logger.trace("serving getMapping request based on version {}", state.version());
ImmutableMap<String, ImmutableMap<String, MappingMetaData>> result = state.metaData().findMappings( ImmutableMap<String, ImmutableMap<String, MappingMetaData>> result = state.metaData().findMappings(
request.indices(), request.types() request.indices(), request.types()
); );