From d75a3fc4e7f82ac8eaa9af2d17c5112973451c6d Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Fri, 20 Jun 2014 08:29:54 -0500 Subject: [PATCH] Fix logdir config struct tag. --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index d111826..248597e 100644 --- a/config.go +++ b/config.go @@ -58,7 +58,7 @@ type config struct { ConfigFile string `short:"C" long:"configfile" description:"Path to configuration file"` SvrListeners []string `long:"rpclisten" description:"Listen for RPC/websocket connections on this interface/port (default port: 18332, mainnet: 8332, simnet: 18554)"` DataDir string `short:"D" long:"datadir" description:"Directory to store wallets and transactions"` - LogDir string `"long:"logdir" description:"Directory to log output."` + LogDir string `long:"logdir" description:"Directory to log output."` Username string `short:"u" long:"username" description:"Username for client and btcd authorization"` Password string `short:"P" long:"password" default-mask:"-" description:"Password for client and btcd authorization"` BtcdUsername string `long:"btcdusername" description:"Alternative username for btcd authorization"`