put back extra debug detail logging to the right places using logger.DebugDetailf

This commit is contained in:
zelig
2014-06-25 16:40:06 +01:00
parent 6465e4c3fd
commit a02edf7a93
2 changed files with 8 additions and 8 deletions

View File

@ -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 {