diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-19 23:59:54 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-19 23:59:54 +0800 |
commit | 463491f8cd639112f8855820d758c2c9c134c9cd (patch) | |
tree | 56fba6185def7c648eb714acb17c6a2bed947b83 | |
parent | 14a2f42f3700640f191e0095b50a266d2a919b38 (diff) | |
download | dexon-463491f8cd639112f8855820d758c2c9c134c9cd.tar.gz dexon-463491f8cd639112f8855820d758c2c9c134c9cd.tar.zst dexon-463491f8cd639112f8855820d758c2c9c134c9cd.zip |
moved back to debug
-rw-r--r-- | rpc/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api.go b/rpc/api.go index a0c12f837..afc0bd455 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -486,7 +486,7 @@ func (p *EthereumApi) GetBlockUncleCountByNumber(blocknum int64) (int64, error) func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error { // Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC - rpclogger.Infof("%s %s", req.Method, req.Params) + rpclogger.Debugf("%s %s", req.Method, req.Params) switch req.Method { case "web3_sha3": args := new(Sha3Args) |