Skip to content

Commit 6cc2125

Browse files
github-actions[bot]senlizishisenlizishi
authored
[MINOR] Fix placeholders error (#7574)
<!-- 1. Title: [#<issue>] <type>(<scope>): <subject> Examples: - "[#123] feat(operator): support xxx" - "[#233] fix: check null before access result in xxx" - "[MINOR] refactor: fix typo in variable name" - "[MINOR] docs: fix typo in README" - "[#255] test: fix flaky test NameOfTheTest" Reference: https://www.conventionalcommits.org/en/v1.0.0/ 2. If the PR is unfinished, please mark this PR as draft. --> ### What changes were proposed in this pull request? Fix placeholders error. ### Why are the changes needed? Just a minor. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Code review. Co-authored-by: BIN <[email protected]> Co-authored-by: senlizishi <[email protected]>
1 parent a8d2eb2 commit 6cc2125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iceberg/iceberg-rest-server/src/main/java/org/apache/gravitino/iceberg/service/CatalogWrapperForREST.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ private static void replaceDeprecatedProperties(
164164
}
165165

166166
if (StringUtils.isNotBlank(deprecatedValue)) {
167-
LOG.warn("%s is deprecated, please use %s instead.", deprecatedProperty, newProperty);
167+
LOG.warn("{} is deprecated, please use {} instead.", deprecatedProperty, newProperty);
168168
properties.remove(deprecatedProperty);
169169
properties.put(newProperty, deprecatedValue);
170170
}

0 commit comments

Comments
 (0)