protected void addProgressOptions() {
OptionGroup optionGroup = new OptionGroup();
Option option = new Option(ARGUMENT_NO_PROGRESS_SHORTFORM,
ARGUMENT_NO_PROGRESS,
false,
"Suppress the normal startup progress bar. This is typically "
+ "used when redirecting console output to a file, or starting "
+ "the server from an IDE or other tool.");
optionGroup.addOption(option);
option = new Option(ARGUMENT_LONG_PROGRESS_SHORTFORM,
ARGUMENT_LONG_PROGRESS,
false,
"Write startup progress to the console in a format that is "
+ "suitable for redirecting console output to a file, or starting "
+ "the server from an IDE or other tool (doesn't use linefeeds to "
+ "update the progress information that is used by default if you " + "don't specify "
+ ARGUMENT_NO_PROGRESS + " or " + ARGUMENT_LONG_PROGRESS + ").");
optionGroup.addOption(option);
options.addOptionGroup(optionGroup);
}
|