diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-16 04:17:09 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-16 04:17:09 +0800 |
commit | 6a78e080e645753ffe3e3bef0b09e71a2469c564 (patch) | |
tree | 8dd51cf78bbda7d0ef1a654a3bc4ec11aacfa3f8 /ethereal | |
parent | 0a03484188dc23707b343bb512ec341afc744a2e (diff) | |
download | dexon-6a78e080e645753ffe3e3bef0b09e71a2469c564.tar dexon-6a78e080e645753ffe3e3bef0b09e71a2469c564.tar.gz dexon-6a78e080e645753ffe3e3bef0b09e71a2469c564.tar.bz2 dexon-6a78e080e645753ffe3e3bef0b09e71a2469c564.tar.lz dexon-6a78e080e645753ffe3e3bef0b09e71a2469c564.tar.xz dexon-6a78e080e645753ffe3e3bef0b09e71a2469c564.tar.zst dexon-6a78e080e645753ffe3e3bef0b09e71a2469c564.zip |
Tell config which loggers to use
Diffstat (limited to 'ethereal')
-rw-r--r-- | ethereal/ethereum.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ethereum.go b/ethereal/ethereum.go index 98fab18e3..206971b41 100644 --- a/ethereal/ethereum.go +++ b/ethereal/ethereum.go @@ -39,7 +39,7 @@ func main() { runtime.GOMAXPROCS(runtime.NumCPU()) ethchain.InitFees() - ethutil.ReadConfig(DataDir) + ethutil.ReadConfig(DataDir, ethutil.LogFile|ethutil.LogStd) // Instantiated a eth stack ethereum, err := eth.New(eth.CapDefault, UseUPnP) |