package com.baeldung.airline; import javax.inject.Inject; import com.github.rvesse.airline.HelpOption; import com.github.rvesse.airline.annotations.Command; import com.github.rvesse.airline.annotations.Option; @Command(name = "setup-log", description = "Setup our log") public class LoggingCommand implements Runnable { @Inject private HelpOption help; @Option(name = { "-v", "--verbose" }, description = "Set log verbosity on/off") private boolean verbose = false; @Override public void run() { //skipping store user choice if (!help.showHelpIfRequested()) System.out.println("Verbosity: " + verbose); } }