Skip to content

Commit 70d1962

Browse files
committed
Add dummy parameters to the standalone server
This allows it to be dropped into an existing system without needing that system to be completely upgraded to 3.0
1 parent 5a715b6 commit 70d1962

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

java/server/src/org/openqa/grid/internal/utils/configuration/StandaloneConfiguration.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@ public class StandaloneConfiguration {
3535
)
3636
public Integer browserTimeout;
3737

38+
@Parameter(
39+
names = "-browserSideLog",
40+
description = "DO NOT USE: Provided for compatibility with 2.0",
41+
hidden = true)
42+
public boolean browserSideLog;
43+
44+
@Parameter(
45+
names = "-captureLogsOnQuit",
46+
description = "DO NOT USE: Provided for compatibility with 2.0",
47+
hidden = true)
48+
public boolean captureLogsOnQuit;
49+
3850
@Parameter(
3951
names = "-debug",
4052
description = "<Boolean> : enables LogLevel.FINE. Default is false (if omitted)"

0 commit comments

Comments
 (0)