diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-22 00:17:07 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-22 00:17:07 +0800 |
commit | bdf99e098126880c10dc2ef68623c47ec6f04537 (patch) | |
tree | c7264b48d8012701911753565c0a11aea069bbb2 /cmd/ethereum | |
parent | acdc19d1b7b25d6ebd8457f423659f3d112a4a75 (diff) | |
download | go-tangerine-bdf99e098126880c10dc2ef68623c47ec6f04537.tar go-tangerine-bdf99e098126880c10dc2ef68623c47ec6f04537.tar.gz go-tangerine-bdf99e098126880c10dc2ef68623c47ec6f04537.tar.bz2 go-tangerine-bdf99e098126880c10dc2ef68623c47ec6f04537.tar.lz go-tangerine-bdf99e098126880c10dc2ef68623c47ec6f04537.tar.xz go-tangerine-bdf99e098126880c10dc2ef68623c47ec6f04537.tar.zst go-tangerine-bdf99e098126880c10dc2ef68623c47ec6f04537.zip |
Add LogFormat flag
Diffstat (limited to 'cmd/ethereum')
-rw-r--r-- | cmd/ethereum/flags.go | 2 | ||||
-rw-r--r-- | cmd/ethereum/main.go | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/cmd/ethereum/flags.go b/cmd/ethereum/flags.go index f829744dc..885cdfe5b 100644 --- a/cmd/ethereum/flags.go +++ b/cmd/ethereum/flags.go @@ -57,6 +57,7 @@ var ( ConfigFile string DebugFile string LogLevel int + LogFormat string Dump bool DumpHash string DumpNumber int @@ -110,6 +111,7 @@ func Init() { flag.StringVar(&ConfigFile, "conf", defaultConfigFile, "config file") flag.StringVar(&DebugFile, "debug", "", "debug file (no debugging if not set)") flag.IntVar(&LogLevel, "loglevel", int(logger.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)") + flag.StringVar(&LogFormat, "logformat", "std", "logformat: std,raw)") flag.BoolVar(&DiffTool, "difftool", false, "creates output for diff'ing. Sets LogLevel=0") flag.StringVar(&DiffType, "diff", "all", "sets the level of diff output [vm, all]. Has no effect if difftool=false") flag.BoolVar(&ShowGenesis, "genesis", false, "Dump the genesis block") diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index b816c678e..b7997d485 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -67,6 +67,7 @@ func main() { DataDir: Datadir, LogFile: LogFile, LogLevel: LogLevel, + LogFormat: LogFormat, Identifier: Identifier, MaxPeers: MaxPeer, Port: OutboundPort, |