Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2875#discussion_r230616611
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/CarbonProperties.java ---
@@ -722,17 +723,19 @@ private void loadProperties() {
}
} catch (FileNotFoundException e) {
LOGGER.error(
- "The file: " + CarbonCommonConstants.CARBON_PROPERTIES_FILE_PATH
+ " does not exist");
+ "The file: " +
CarbonCommonConstants.CARBON_PROPERTIES_FILE_PATH_DEFAULT
--- End diff --
here should use `file.getAbsolutePath` directly
---