1
0

[MINOR] change log.info to log.debug (#1883)

This commit is contained in:
Bhavani Sudha Saktheeswaran
2020-07-28 09:49:03 -07:00
committed by GitHub
parent b2763f433b
commit d5b593b7d9

View File

@@ -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;
}