From 2591883a18113f1b60e6057313ff552c92d7f261 Mon Sep 17 00:00:00 2001 From: Gustav Simonsson Date: Tue, 7 Apr 2015 12:48:13 +0200 Subject: [PATCH] Use logger.Error instead of 0 with glog --- core/types/transaction.go | 3 ++- core/vm/address.go | 3 ++- whisper/message.go | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/core/types/transaction.go b/core/types/transaction.go index 2f23a79604..6646bdf295 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -9,6 +9,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/crypto/secp256k1" + "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/logger/glog" "github.com/ethereum/go-ethereum/rlp" ) @@ -132,7 +133,7 @@ func (tx *Transaction) PublicKey() []byte { //pubkey, _ := secp256k1.RecoverPubkey(hash[:], sig) p, err := crypto.SigToPub(hash[:], sig) if err != nil { - glog.V(0).Infof("Could not get pubkey from signature: ", err) + glog.V(logger.Error).Infof("Could not get pubkey from signature: ", err) return nil } pubkey := crypto.FromECDSAPub(p) diff --git a/core/vm/address.go b/core/vm/address.go index c6db1d5ff1..742017dd22 100644 --- a/core/vm/address.go +++ b/core/vm/address.go @@ -5,6 +5,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/logger/glog" "github.com/ethereum/go-ethereum/params" ) @@ -84,7 +85,7 @@ func ecrecoverFunc(in []byte) []byte { pubKey, err := crypto.Ecrecover(in[:32], rsv) // make sure the public key is a valid one if err != nil { - glog.V(0).Infof("EC RECOVER FAIL: ", err) + glog.V(logger.Error).Infof("EC RECOVER FAIL: ", err) return nil } diff --git a/whisper/message.go b/whisper/message.go index 407cfb1e8c..ad6a1bcff6 100644 --- a/whisper/message.go +++ b/whisper/message.go @@ -5,6 +5,7 @@ import ( "time" "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/logger/glog" ) @@ -35,7 +36,7 @@ func (self *Message) Recover() *ecdsa.PublicKey { defer func() { recover() }() // in case of invalid sig pub, err := crypto.SigToPub(self.hash(), self.Signature) if err != nil { - glog.V(0).Infof("Could not get pubkey from signature: ", err) + glog.V(logger.Error).Infof("Could not get pubkey from signature: ", err) return nil } return pub