SOLR-8151: Don't log OverseerCollectionMessageHandler info as WARN

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1708046 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alan Woodward 2015-10-12 07:52:05 +00:00
parent c03a8deaeb
commit 3e8cd29d55
2 changed files with 4 additions and 1 deletions

View File

@ -336,6 +336,9 @@ Other Changes
* SOLR-8150: Fix build failure due to too much output from QueryResponseTest (janhoy)
* SOLR-8151: OverseerCollectionMessageHandler was logging info data as WARN
(Alan Woodward)
================== 5.3.1 ==================
Bug Fixes

View File

@ -206,7 +206,7 @@ public class OverseerCollectionMessageHandler implements OverseerMessageHandler
@Override
@SuppressWarnings("unchecked")
public SolrResponse processMessage(ZkNodeProps message, String operation) {
log.warn("OverseerCollectionMessageHandler.processMessage : "+ operation + " , "+ message.toString());
log.info("OverseerCollectionMessageHandler.processMessage : "+ operation + " , "+ message.toString());
NamedList results = new NamedList();
try {