diff options
author | Felix Lange <fjl@twurst.com> | 2017-02-24 02:31:13 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2017-02-27 22:33:12 +0800 |
commit | d0eba23af373bb54b00b242ccee4239fc9afd873 (patch) | |
tree | cf19edb8ed153797edc8da7772f6d7f0671c410b /eth | |
parent | 43362ab4fb561323e1a766405eaa8f82dec4a280 (diff) | |
download | dexon-d0eba23af373bb54b00b242ccee4239fc9afd873.tar.gz dexon-d0eba23af373bb54b00b242ccee4239fc9afd873.tar.zst dexon-d0eba23af373bb54b00b242ccee4239fc9afd873.zip |
all: disable log message colors outside of geth
Also tweak behaviour so colors are only enabled when stderr is a terminal.
Diffstat (limited to 'eth')
-rw-r--r-- | eth/protocol_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/protocol_test.go b/eth/protocol_test.go index c0458f2be..43f336c32 100644 --- a/eth/protocol_test.go +++ b/eth/protocol_test.go @@ -30,7 +30,7 @@ import ( ) func init() { - // log.Root().SetHandler(log.LvlFilterHandler(log.LvlTrace, log.StreamHandler(os.Stderr, log.TerminalFormat()))) + // log.Root().SetHandler(log.LvlFilterHandler(log.LvlTrace, log.StreamHandler(os.Stderr, log.TerminalFormat(false)))) } var testAccount, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291") |