leesf commented on a change in pull request #5141:
URL: https://github.com/apache/hudi/pull/5141#discussion_r835873697
##########
File path:
hudi-common/src/main/java/org/apache/hudi/common/util/ParquetReaderIterator.java
##########
@@ -31,6 +33,8 @@
*/
public class ParquetReaderIterator<T> implements ClosableIterator<T> {
+ private static final Logger LOG =
LogManager.getLogger(ParquetReaderIterator.class);
Review comment:
unused import?
##########
File path:
hudi-common/src/main/java/org/apache/hudi/io/storage/HoodieParquetReader.java
##########
@@ -30,14 +32,21 @@
import org.apache.hudi.common.model.HoodieFileFormat;
import org.apache.hudi.common.util.BaseFileUtils;
import org.apache.hudi.common.util.ParquetReaderIterator;
+
+import org.apache.log4j.LogManager;
+import org.apache.log4j.Logger;
import org.apache.parquet.avro.AvroParquetReader;
import org.apache.parquet.avro.AvroReadSupport;
import org.apache.parquet.hadoop.ParquetReader;
public class HoodieParquetReader<R extends IndexedRecord> implements
HoodieFileReader<R> {
+
+ private static final Logger LOG =
LogManager.getLogger(HoodieParquetReader.class);
Review comment:
ditto
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]