Tweak log.warn(ing) in SolrMetricManager.loadClusterReporters method (node/cluster reporter).

This commit is contained in:
Christine Poerschke 2017-09-22 15:32:27 +01:00
parent a5d13a7f33
commit fd89532ab3
1 changed files with 1 additions and 1 deletions

View File

@ -1105,7 +1105,7 @@ public class SolrMetricManager {
SolrMetricReporter reporter = loadReporter(registryName, cc.getResourceLoader(), info, null);
((SolrClusterReporter)reporter).setCoreContainer(cc);
} catch (Exception e) {
log.warn("Could not load node reporter, pluginInfo=" + info, e);
log.warn("Could not load cluster reporter, pluginInfo=" + info, e);
}
}
}