added debug flag - alias for verbose

This commit is contained in:
Ondřej Hruška
2014-05-20 22:16:42 +02:00
parent 9ca95838eb
commit cb0e87f460
+2 -2
View File
@@ -46,7 +46,7 @@ public class Launcher {
llSyso = Level.WARNING;
continue;
} else if (arg.equals("--verbose") || arg.equals("-v")) {
} else if (arg.equals("--debug") || arg.equals("--verbose") || arg.equals("-v")) {
llSyso = Level.ALL;
continue;
@@ -89,7 +89,7 @@ public class Launcher {
System.out.println(
"Arguments:\n" +
"\t--workdir <path>, -w <path> .... specify working directory\n" +
"\t--verbose, -v .................. print all messages\n" +
"\t--verbose, --debug, -v ......... print all messages\n" +
"\t--silent, -s ................... print no messages\n" +
"\t--warnings, -e ................. print only warning and error messages\n" +
"\t--help, -h ..................... show this help\n");