print command line arguments indebug mode

This commit is contained in:
honfika@gmail.com
2014-08-26 15:04:10 +02:00
parent 8adc956734
commit 150c71da3d

View File

@@ -317,6 +317,9 @@ public class CommandLineArgumentParser {
traceLevel = Level.FINE;
break;
case "-debug":
for (int i = 0; i < arguments.length; i++) {
System.out.println(i + ".:" + arguments.length);
}
Configuration.debugMode.set(true);
break;
default: