diff options
author | Felix Lange <fjl@twurst.com> | 2014-10-16 16:47:12 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2014-10-17 23:23:28 +0800 |
commit | cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3 (patch) | |
tree | 48cdf93d9753b14816c961966c56e419969854fb /tests/helper/init.go | |
parent | 0165c1833017963a280f135a5733974a9fc3ec0b (diff) | |
download | dexon-cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3.tar dexon-cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3.tar.gz dexon-cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3.tar.bz2 dexon-cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3.tar.lz dexon-cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3.tar.xz dexon-cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3.tar.zst dexon-cbd785cfe8801c240bbaaa6f21ebf3ab7045e4a3.zip |
ethvm, tests/*: use log level constants
Diffstat (limited to 'tests/helper/init.go')
-rw-r--r-- | tests/helper/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helper/init.go b/tests/helper/init.go index a84a7749f..3de5c50eb 100644 --- a/tests/helper/init.go +++ b/tests/helper/init.go @@ -12,7 +12,7 @@ var Logger ethlog.LogSystem var Log = ethlog.NewLogger("TEST") func init() { - Logger = ethlog.NewStdLogSystem(os.Stdout, log.LstdFlags, ethlog.LogLevel(3)) + Logger = ethlog.NewStdLogSystem(os.Stdout, log.LstdFlags, ethlog.InfoLevel) ethlog.AddLogSystem(Logger) ethutil.ReadConfig(".ethtest", "/tmp/ethtest", "") |