SOLR-12558: solr/core (private) logger rename - ExportWriter

This commit is contained in:
Christine Poerschke 2018-07-30 18:48:58 +01:00
parent e1063b7f4b
commit 3583bdb324
1 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@ import static java.util.Collections.singletonMap;
import static org.apache.solr.common.util.Utils.makeMap; import static org.apache.solr.common.util.Utils.makeMap;
public class ExportWriter implements SolrCore.RawWriter, Closeable { public class ExportWriter implements SolrCore.RawWriter, Closeable {
private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
private OutputStreamWriter respWriter; private OutputStreamWriter respWriter;
final SolrQueryRequest req; final SolrQueryRequest req;
final SolrQueryResponse res; final SolrQueryResponse res;
@ -105,15 +105,15 @@ public class ExportWriter implements SolrCore.RawWriter, Closeable {
} }
protected void writeException(Exception e, PushWriter w, boolean log) throws IOException { protected void writeException(Exception e, PushWriter w, boolean logException) throws IOException {
w.writeMap(mw -> { w.writeMap(mw -> {
mw.put("responseHeader", singletonMap("status", 400)) mw.put("responseHeader", singletonMap("status", 400))
.put("response", makeMap( .put("response", makeMap(
"numFound", 0, "numFound", 0,
"docs", singletonList(singletonMap("EXCEPTION", e.getMessage())))); "docs", singletonList(singletonMap("EXCEPTION", e.getMessage()))));
}); });
if (log) { if (logException) {
SolrException.log(logger, e); SolrException.log(log, e);
} }
} }