Reformatted 'log-level' cli arg

This commit is contained in:
Collin Smith 2020-11-22 14:14:35 -08:00
parent 938ab653be
commit 7e004917d1

View File

@ -59,8 +59,13 @@ public class DesktopLauncher {
.longOpt("fps") .longOpt("fps")
.desc("force enables fps counter") .desc("force enables fps counter")
.build()) .build())
.addOption("logLevel", true, .addOption(Option
"log verbosity for debugging purposes") .builder("l")
.longOpt("log-level")
.desc("log verbosity for debugging purposes")
.hasArg()
.argName("level")
.build())
.addOption("allowSoftwareMode", false, .addOption("allowSoftwareMode", false,
"allows software OpenGL rendering if hardware acceleration is not available") "allows software OpenGL rendering if hardware acceleration is not available")
.addOption("home", true, .addOption("home", true,