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")
.desc("force enables fps counter")
.build())
.addOption("logLevel", true,
"log verbosity for debugging purposes")
.addOption(Option
.builder("l")
.longOpt("log-level")
.desc("log verbosity for debugging purposes")
.hasArg()
.argName("level")
.build())
.addOption("allowSoftwareMode", false,
"allows software OpenGL rendering if hardware acceleration is not available")
.addOption("home", true,