leesf commented on a change in pull request #1161: [HUDI-457]Redo hudi-common
log statements using SLF4J
URL: https://github.com/apache/incubator-hudi/pull/1161#discussion_r364644370
##########
File path:
hudi-common/src/main/java/org/apache/hudi/common/table/HoodieTableMetaClient.java
##########
@@ -324,7 +324,7 @@ public static HoodieTableMetaClient
initTableType(Configuration hadoopConf, Stri
*/
public static HoodieTableMetaClient
initDatasetAndGetMetaClient(Configuration hadoopConf, String basePath,
Properties props) throws IOException {
- LOG.info("Initializing " + basePath + " as hoodie dataset " + basePath);
+ LOG.info("Initializing {} as hoodie dataset {}", basePath, basePath);
Review comment:
change to `LOG.info("Initializing {} as hoodie dataset", basePath);`
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services