This is an automated email from the ASF dual-hosted git repository.
liugddx pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new 59720a7866 [improve] delete log for protect user privacy (#6987)
59720a7866 is described below
commit 59720a78662cd929621618b9100fb757410923d0
Author: 老王 <[email protected]>
AuthorDate: Sun Jun 16 20:46:26 2024 +0800
[improve] delete log for protect user privacy (#6987)
---
.../java/org/apache/seatunnel/core/starter/utils/ConfigBuilder.java | 2 --
1 file changed, 2 deletions(-)
diff --git
a/seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigBuilder.java
b/seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigBuilder.java
index 145079b19f..57d26ee0e7 100644
---
a/seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigBuilder.java
+++
b/seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigBuilder.java
@@ -76,7 +76,6 @@ public class ConfigBuilder {
adapterSupplier
.map(adapter -> of(adapter, filePath, variables))
.orElseGet(() -> ofInner(filePath, variables));
- log.info("Parsed config file: \n{}",
config.root().render(CONFIG_RENDER_OPTIONS));
return config;
}
@@ -95,7 +94,6 @@ public class ConfigBuilder {
if (!isEncrypt) {
config = ConfigShadeUtils.decryptConfig(config);
}
- log.info("Parsed config file: \n{}",
config.root().render(CONFIG_RENDER_OPTIONS));
return config;
}