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 9ad1e69 commit c7e3668Copy full SHA for c7e3668
flinkx-core/src/main/java/com/dtstack/flinkx/options/Options.java
@@ -247,4 +247,28 @@ public String getP() {
247
public void setP(String p) {
248
this.p = p;
249
}
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
+ }
274
0 commit comments