You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by bh...@apache.org on 2020/07/28 16:49:27 UTC

[hudi] branch master updated: [MINOR] change log.info to log.debug (#1883)

This is an automated email from the ASF dual-hosted git repository.

bhavanisudha pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new d5b593b  [MINOR] change log.info to log.debug (#1883)
d5b593b is described below

commit d5b593b7d952a39679cade2b18aadbdfb2dc3eed
Author: Bhavani Sudha Saktheeswaran <bh...@gmail.com>
AuthorDate: Tue Jul 28 09:49:03 2020 -0700

    [MINOR] change log.info to log.debug (#1883)
---
 .../org/apache/hudi/hadoop/realtime/AbstractRealtimeRecordReader.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/realtime/AbstractRealtimeRecordReader.java b/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/realtime/AbstractRealtimeRecordReader.java
index 3758b9b..e14fe7e 100644
--- a/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/realtime/AbstractRealtimeRecordReader.java
+++ b/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/realtime/AbstractRealtimeRecordReader.java
@@ -132,7 +132,7 @@ public abstract class AbstractRealtimeRecordReader {
     Schema hiveSchema = Schema.createRecord(writerSchema.getName(), writerSchema.getDoc(), writerSchema.getNamespace(),
         writerSchema.isError());
     hiveSchema.setFields(hiveSchemaFields);
-    LOG.info("HIVE Schema is :" + hiveSchema.toString(true));
+    LOG.debug("HIVE Schema is :" + hiveSchema.toString(true));
     return hiveSchema;
   }