Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2107#discussion_r177409405
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/loading/converter/impl/MeasureFieldConverterImpl.java
---
@@ -95,8 +95,9 @@ public void convert(CarbonRow row, BadRecordLogHolder
logHolder)
}
row.update(output, index);
} catch (NumberFormatException e) {
- LOGGER.warn(
- "Cant not convert value to Numeric type value. Value
considered as null.");
+ if (LOGGER.isDebugEnabled()) {
+ LOGGER.warn("Can not convert value to Numeric type value. Value
considered as null.");
--- End diff --
Change it to Logger.debug
---