1
0

[MINOR] Fix error usage of String.format (#1169)

This commit is contained in:
lamber-ken
2020-01-01 19:11:15 -06:00
committed by leesf
parent dde21e7315
commit e1e5fe3324

View File

@@ -156,7 +156,7 @@ public class HoodieSnapshotCopier implements Serializable {
// Create the _SUCCESS tag
Path successTagPath = new Path(outputDir + "/_SUCCESS");
if (!fs.exists(successTagPath)) {
LOG.info(String.format("Creating _SUCCESS under targetBasePath: $s", outputDir));
LOG.info(String.format("Creating _SUCCESS under targetBasePath: %s", outputDir));
fs.createNewFile(successTagPath);
}
}