Skip to content

Commit c7e3668

Browse files
committed
优化代码
1 parent 9ad1e69 commit c7e3668

File tree

1 file changed

+24
-0
lines changed
  • flinkx-core/src/main/java/com/dtstack/flinkx/options

1 file changed

+24
-0
lines changed

flinkx-core/src/main/java/com/dtstack/flinkx/options/Options.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,4 +247,28 @@ public String getP() {
247247
public void setP(String p) {
248248
this.p = p;
249249
}
250+
251+
@Override
252+
public String toString() {
253+
return "Options{" +
254+
"mode='" + mode + '\'' +
255+
", job='" + job + '\'' +
256+
", monitor='" + monitor + '\'' +
257+
", jobid='" + jobid + '\'' +
258+
", flinkconf='" + flinkconf + '\'' +
259+
", pluginRoot='" + pluginRoot + '\'' +
260+
", yarnconf='" + yarnconf + '\'' +
261+
", parallelism='" + parallelism + '\'' +
262+
", priority='" + priority + '\'' +
263+
", queue='" + queue + '\'' +
264+
", flinkLibJar='" + flinkLibJar + '\'' +
265+
", confProp='" + confProp + '\'' +
266+
", p='" + p + '\'' +
267+
", s='" + s + '\'' +
268+
", pluginLoadMode='" + pluginLoadMode + '\'' +
269+
", appId='" + appId + '\'' +
270+
", remotePluginPath='" + remotePluginPath + '\'' +
271+
", flinkConfiguration=" + flinkConfiguration +
272+
'}';
273+
}
250274
}

0 commit comments

Comments
 (0)