aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/flags.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-31 21:20:11 +0800
committerobscuren <geffobscura@gmail.com>2014-10-31 21:20:11 +0800
commit8826e9694c3a8d4f480f0a021d8c02f7f61612c6 (patch)
tree0c628ab800a0f701d0ae9adf5026c3d8a503232e /cmd/mist/flags.go
parentb1c247231b11f313ca0eedff75ea563926d23f68 (diff)
downloadgo-tangerine-8826e9694c3a8d4f480f0a021d8c02f7f61612c6.tar.gz
go-tangerine-8826e9694c3a8d4f480f0a021d8c02f7f61612c6.tar.zst
go-tangerine-8826e9694c3a8d4f480f0a021d8c02f7f61612c6.zip
Moved utils to cmd
Diffstat (limited to 'cmd/mist/flags.go')
-rw-r--r--cmd/mist/flags.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/mist/flags.go b/cmd/mist/flags.go
index 7de2a881d..2ae0a0487 100644
--- a/cmd/mist/flags.go
+++ b/cmd/mist/flags.go
@@ -28,6 +28,7 @@ import (
"runtime"
"bitbucket.org/kardianos/osext"
+ "github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/vm"
)
@@ -116,7 +117,7 @@ func Init() {
flag.StringVar(&Datadir, "datadir", defaultDataDir(), "specifies the datadir to use")
flag.StringVar(&ConfigFile, "conf", defaultConfigFile, "config file")
flag.StringVar(&DebugFile, "debug", "", "debug file (no debugging if not set)")
- flag.IntVar(&LogLevel, "loglevel", int(repllogger.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)")
+ flag.IntVar(&LogLevel, "loglevel", int(logger.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)")
flag.StringVar(&AssetPath, "asset_path", defaultAssetPath(), "absolute path to GUI assets directory")