diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-04 19:24:01 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-04 19:24:01 +0800 |
commit | 1889727144008273e9dcd491dce6672126c37652 (patch) | |
tree | c97f8939039377e10f695e554667945e36750b9a /core/state/statedb.go | |
parent | 218bfeb60e9a9e7f0874db18135e7ad633ff83f1 (diff) | |
download | dexon-1889727144008273e9dcd491dce6672126c37652.tar.gz dexon-1889727144008273e9dcd491dce6672126c37652.tar.zst dexon-1889727144008273e9dcd491dce6672126c37652.zip |
Moved logging to logger.Core
Diffstat (limited to 'core/state/statedb.go')
-rw-r--r-- | core/state/statedb.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/statedb.go b/core/state/statedb.go index e027533aa..065cbd607 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -209,7 +209,7 @@ func (self *StateDB) GetOrNewStateObject(addr common.Address) *StateObject { // NewStateObject create a state object whether it exist in the trie or not func (self *StateDB) newStateObject(addr common.Address) *StateObject { - if glog.V(logger.Debug) { + if glog.V(logger.Core) { glog.Infof("(+) %x\n", addr) } |