Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the new server arguments #880

Merged
merged 2 commits into from
Apr 27, 2018
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