Skip to content

Commit

Permalink
Add dummy parameters to the standalone server
Browse files Browse the repository at this point in the history
This allows it to be dropped into an existing system without needing
that system to be completely upgraded to 3.0
  • Loading branch information
shs96c committed Sep 5, 2016
1 parent 5a715b6 commit 70d1962
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ public class StandaloneConfiguration {
)
public Integer browserTimeout;

@Parameter(
names = "-browserSideLog",
description = "DO NOT USE: Provided for compatibility with 2.0",
hidden = true)
public boolean browserSideLog;

@Parameter(
names = "-captureLogsOnQuit",
description = "DO NOT USE: Provided for compatibility with 2.0",
hidden = true)
public boolean captureLogsOnQuit;

@Parameter(
names = "-debug",
description = "<Boolean> : enables LogLevel.FINE. Default is false (if omitted)"
Expand Down

0 comments on commit 70d1962

Please sign in to comment.