diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-25 23:40:06 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-25 23:40:06 +0800 |
commit | a02edf7a9306c9c0b2f0208152347b47f1a4e689 (patch) | |
tree | 5aa5b0625669253273b49269e7766e05d3eebf77 /ethchain | |
parent | 6465e4c3fd21e7002e5870069c51755bd2c66df5 (diff) | |
download | go-tangerine-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar go-tangerine-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar.gz go-tangerine-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar.bz2 go-tangerine-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar.lz go-tangerine-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar.xz go-tangerine-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar.zst go-tangerine-a02edf7a9306c9c0b2f0208152347b47f1a4e689.zip |
put back extra debug detail logging to the right places using logger.DebugDetailf
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/state_object.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go index 7d7352af4..26ad3e982 100644 --- a/ethchain/state_object.go +++ b/ethchain/state_object.go @@ -158,7 +158,7 @@ func (c *StateObject) ConvertGas(gas, price *big.Int) error { func (self *StateObject) SetGasPool(gasLimit *big.Int) { self.gasPool = new(big.Int).Set(gasLimit) - statelogger.Infof("%x: fuel (+ %v)", self.Address(), self.gasPool) + statelogger.DebugDetailf("%x: fuel (+ %v)", self.Address(), self.gasPool) } func (self *StateObject) BuyGas(gas, price *big.Int) error { |