Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public enum GeneralServerFlag implements ServerArgument {
* Port for robot. Sample: --robot-port 4242
*/
ROBOT_PORT("--robot-port"),

/**
* Show info about the Appium server configuration and exit. Default: false
*/
Expand All @@ -107,12 +106,20 @@ public enum GeneralServerFlag implements ServerArgument {
* Add exaggerated spacing in logs to help with visual inspection. Default: false
*/
DEBUG_LOG_SPACING("--debug-log-spacing"),

/**
* Add long stack traces to log entries. Recommended for debugging only.
* Default: false
*/
ASYNC_TRACE("--async-trace");
ASYNC_TRACE("--async-trace"),
/**
* Disable additional security checks. Only enable it if all the clients are in the trusted network.
* Default: false
*/
RELAXED_SECURITY("--relaxed-security"),
/**
* Enables NodeJS memory dumps collection feature.
*/
ENABLE_HEAP_DUMP("--enable-heapdump");

private final String arg;

Expand Down