Changed default verbosity to low.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5866 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder 2004-01-02 03:48:01 +00:00
parent 798e36f61d
commit 3413f785f6

View File

@ -21,7 +21,7 @@
Shell::Shell()
// The following settings are essentially default values
// for all the command-line options.
: fVerbosityLevel(VERBOSITY_HIGH)
: fVerbosityLevel(VERBOSITY_LOW)
, fBlockSize(2048)
, fDoUdf(true)
, fDoIso(true)
@ -110,8 +110,8 @@ Shell::_PrintHelp() {
printf("VALID ARGUMENTS:\n");
printf(" --help: Displays this help text\n");
printf(" -v0: Sets verbosity level to 0 (silent)\n");
printf(" -v1: Sets verbosity level to 1 (low)\n");
printf(" -v1: Sets verbosity level to 1 (low, *default*)\n");
printf(" -v2: Sets verbosity level to 2 (medium)\n");
printf(" -v3: Sets verbosity level to 3 (high, *default*)\n");
printf(" -v3: Sets verbosity level to 3 (high)\n");
printf("\n");
}