Skip to content

Commit

Permalink
[grid] Make tracing and http-logs flags visible for config-help
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani committed Sep 3, 2021
1 parent 0c7deb4 commit d67015e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/src/org/openqa/selenium/grid/log/LoggingFlags.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ public class LoggingFlags implements HasRoles {
@ConfigValue(section = LOGGING_SECTION, name = "plain-logs", example = "true")
private Boolean plainLogs = DEFAULT_PLAIN_LOGS;

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

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

Expand Down

0 comments on commit d67015e

Please sign in to comment.