Skip to content

Commit c2e513e

Browse files
committed
loopd: remove short flags to avoid collision
1 parent 3a38f8f commit c2e513e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

loopd/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type lndConfig struct {
2929
type viewParameters struct{}
3030

3131
type Config struct {
32-
ShowVersion bool `short:"V" long:"version" description:"Display version information and exit"`
32+
ShowVersion bool `long:"version" description:"Display version information and exit"`
3333
Insecure bool `long:"insecure" description:"disable tls"`
3434
Network string `long:"network" description:"network to run on" choice:"regtest" choice:"testnet" choice:"mainnet" choice:"simnet"`
3535
SwapServer string `long:"swapserver" description:"swap server address host:port"`
@@ -42,7 +42,7 @@ type Config struct {
4242
MaxLogFiles int `long:"maxlogfiles" description:"Maximum logfiles to keep (0 for no rotation)"`
4343
MaxLogFileSize int `long:"maxlogfilesize" description:"Maximum logfile size in MB"`
4444

45-
DebugLevel string `short:"d" long:"debuglevel" description:"Logging level for all subsystems {trace, debug, info, warn, error, critical} -- You may also specify <subsystem>=<level>,<subsystem2>=<level>,... to set the log level for individual subsystems -- Use show to list available subsystems"`
45+
DebugLevel string `long:"debuglevel" description:"Logging level for all subsystems {trace, debug, info, warn, error, critical} -- You may also specify <subsystem>=<level>,<subsystem2>=<level>,... to set the log level for individual subsystems -- Use show to list available subsystems"`
4646
MaxLSATCost uint32 `long:"maxlsatcost" description:"Maximum cost in satoshis that loopd is going to pay for an LSAT token automatically. Does not include routing fees."`
4747
MaxLSATFee uint32 `long:"maxlsatfee" description:"Maximum routing fee in satoshis that we are willing to pay while paying for an LSAT token."`
4848

0 commit comments

Comments
 (0)