aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/statedb.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-04 19:24:01 +0800
committerobscuren <geffobscura@gmail.com>2015-04-04 19:24:01 +0800
commit1889727144008273e9dcd491dce6672126c37652 (patch)
treec97f8939039377e10f695e554667945e36750b9a /core/state/statedb.go
parent218bfeb60e9a9e7f0874db18135e7ad633ff83f1 (diff)
downloadgo-tangerine-1889727144008273e9dcd491dce6672126c37652.tar
go-tangerine-1889727144008273e9dcd491dce6672126c37652.tar.gz
go-tangerine-1889727144008273e9dcd491dce6672126c37652.tar.bz2
go-tangerine-1889727144008273e9dcd491dce6672126c37652.tar.lz
go-tangerine-1889727144008273e9dcd491dce6672126c37652.tar.xz
go-tangerine-1889727144008273e9dcd491dce6672126c37652.tar.zst
go-tangerine-1889727144008273e9dcd491dce6672126c37652.zip
Moved logging to logger.Core
Diffstat (limited to 'core/state/statedb.go')
-rw-r--r--core/state/statedb.go2
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)
}