refactor: remove unused flag

This commit is contained in:
decentral1se 2021-12-27 16:07:57 +01:00
parent 3eef1e8587
commit a06043375d
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
2 changed files with 0 additions and 13 deletions

View File

@ -43,7 +43,6 @@ convenient command-line experience. See "abra autocomplete -h" for more.
AutoCompleteCommand,
},
Flags: []cli.Flag{
internal.VerboseFlag,
internal.DebugFlag,
internal.NoInputFlag,
},

View File

@ -272,18 +272,6 @@ var DebugFlag = &cli.BoolFlag{
Usage: "Show DEBUG messages",
}
// Verbose stores the variable from VerboseFlag.
var Verbose bool
// VerboseFlag turns on/off verbose logging down to the INFO level.
var VerboseFlag = &cli.BoolFlag{
Name: "verbose",
Aliases: []string{"V"},
Value: false,
Destination: &Verbose,
Usage: "Show INFO messages",
}
// RC signifies the latest release candidate
var RC bool