We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d87cf8 commit b2bd4d2Copy full SHA for b2bd4d2
seatunnel-api/src/main/java/org/apache/seatunnel/api/configuration/ReadonlyConfig.java
@@ -103,10 +103,10 @@ public <T> Optional<T> getOptional(Option<T> option) {
103
for (String fallbackKey : option.getFallbackKeys()) {
104
value = getValue(fallbackKey);
105
if (value != null) {
106
- log.info(
107
- "Config uses fallback configuration key '{}' instead of key '{}'",
108
- fallbackKey,
109
- option.key());
+ log.warn(
+ "Please use the new key '{}' instead of the deprecated key '{}'.",
+ option.key(),
+ fallbackKey);
110
break;
111
}
112
0 commit comments