Skip to content

Commit d67015e

Browse files
committed
[grid] Make tracing and http-logs flags visible for config-help
1 parent 0c7deb4 commit d67015e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

java/src/org/openqa/selenium/grid/log/LoggingFlags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ public class LoggingFlags implements HasRoles {
5656
@ConfigValue(section = LOGGING_SECTION, name = "plain-logs", example = "true")
5757
private Boolean plainLogs = DEFAULT_PLAIN_LOGS;
5858

59-
@Parameter(description = "Enable trace collection", hidden = true, names = "--tracing", arity = 1)
59+
@Parameter(description = "Enable trace collection", names = "--tracing", arity = 1)
6060
@ConfigValue(section = LOGGING_SECTION, name = "tracing", example = "true")
6161
private Boolean enableTracing = DEFAULT_TRACING_ENABLED;
6262

63-
@Parameter(description = "Enable http logging. Tracing should be enabled to log http logs.", hidden = true, names = "--http-logs", arity = 1)
63+
@Parameter(description = "Enable http logging. Tracing should be enabled to log http logs.", names = "--http-logs", arity = 1)
6464
@ConfigValue(section = LOGGING_SECTION, name = "http-logs", example = "true")
6565
private Boolean httpLogs = DEFAULT_HTTP_LOGS;
6666

0 commit comments

Comments
 (0)