Skip to content

Commit

Permalink
Fix error log class name issue (elastic#75831)
Browse files Browse the repository at this point in the history
AbstractIndexOrdinalsFieldData referenced the wrong class in its logger. Fix it.
  • Loading branch information
howardhuanghua authored Aug 4, 2021
1 parent 2d7d3bd commit 63ada76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import java.util.function.Function;

public abstract class AbstractIndexOrdinalsFieldData implements IndexOrdinalsFieldData {
private static final Logger logger = LogManager.getLogger(AbstractBinaryDVLeafFieldData.class);
private static final Logger logger = LogManager.getLogger(AbstractIndexOrdinalsFieldData.class);

private final String fieldName;
private final ValuesSourceType valuesSourceType;
Expand Down

0 comments on commit 63ada76

Please sign in to comment.