From 8ee1abecb971e39ad5e0ed5b199ff4bf553ca67a Mon Sep 17 00:00:00 2001 From: zelig Date: Wed, 25 Jun 2014 16:54:29 +0100 Subject: [PATCH] update log levels to include DebugDetail; correct default datadir for ethereal --- ethereal/flags.go | 5 +++-- ethereum/flags.go | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ethereal/flags.go b/ethereal/flags.go index 5975439c9f..5ab4c80e22 100644 --- a/ethereal/flags.go +++ b/ethereal/flags.go @@ -61,7 +61,7 @@ func defaultAssetPath() string { func defaultDataDir() string { usr, _ := user.Current() - return path.Join(usr.HomeDir, ".ethereum") + return path.Join(usr.HomeDir, ".ethereal") } var defaultConfigFile = path.Join(defaultDataDir(), "conf.ini") @@ -87,7 +87,8 @@ 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(ethlog.InfoLevel), "loglevel: 0-4: silent,error,warn,info,debug)") + flag.IntVar(&LogLevel, "loglevel", int(ethlog.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)") + flag.StringVar(&AssetPath, "asset_path", defaultAssetPath(), "absolute path to GUI assets directory") flag.Parse() diff --git a/ethereum/flags.go b/ethereum/flags.go index 513d93a6d0..99aa9b2505 100644 --- a/ethereum/flags.go +++ b/ethereum/flags.go @@ -61,7 +61,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(ethlog.InfoLevel), "loglevel: 0-4: silent,error,warn,info,debug)") + flag.IntVar(&LogLevel, "loglevel", int(ethlog.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)") flag.BoolVar(&StartMining, "mine", false, "start dagger mining") flag.BoolVar(&StartJsConsole, "js", false, "launches javascript console")