aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-06-25 23:40:06 +0800
committerzelig <viktor.tron@gmail.com>2014-06-25 23:40:06 +0800
commita02edf7a9306c9c0b2f0208152347b47f1a4e689 (patch)
tree5aa5b0625669253273b49269e7766e05d3eebf77 /ethchain
parent6465e4c3fd21e7002e5870069c51755bd2c66df5 (diff)
downloaddexon-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar.gz
dexon-a02edf7a9306c9c0b2f0208152347b47f1a4e689.tar.zst
dexon-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.go2
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 {