File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
src/main/java/io/appium/java_client Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -205,4 +205,28 @@ public AppiumClientConfig directConnect(boolean directConnect) {
205
205
public boolean isDirectConnectEnabled () {
206
206
return directConnect ;
207
207
}
208
+
209
+ @ Override
210
+ public String toString () {
211
+ return "AppiumClientConfig{"
212
+ + "baseUri="
213
+ + this .baseUri ()
214
+ + ", connectionTimeout="
215
+ + this .connectionTimeout ()
216
+ + ", readTimeout="
217
+ + this .readTimeout ()
218
+ + ", filters="
219
+ + this .filter ()
220
+ + ", proxy="
221
+ + this .proxy ()
222
+ + ", credentials="
223
+ + this .credentials ()
224
+ + ", sslcontext="
225
+ + this .sslContext ()
226
+ + ", version="
227
+ + this .version ()
228
+ + ", directConnect="
229
+ + this .directConnect
230
+ + '}' ;
231
+ }
208
232
}
You can’t perform that action at this time.
0 commit comments