diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-25 00:49:28 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-25 00:49:28 +0800 |
commit | c38a3b4cc7b7dc62c7fca9cd46a880b036462a27 (patch) | |
tree | b82bb1eb9e7bb7a9eeefe152979ea67ef62b2394 /rpc | |
parent | 9de1ad65460898ab79c02ce076f1a2b0a7144656 (diff) | |
download | dexon-c38a3b4cc7b7dc62c7fca9cd46a880b036462a27.tar.gz dexon-c38a3b4cc7b7dc62c7fca9cd46a880b036462a27.tar.zst dexon-c38a3b4cc7b7dc62c7fca9cd46a880b036462a27.zip |
Better error reporting in the console. Updated ethereum.js
Diffstat (limited to 'rpc')
-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 4bc199176..d1f984144 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -50,7 +50,7 @@ func (api *EthereumApi) Close() { func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error { // Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC - rpclogger.Debugf("%s %s", req.Method, req.Params) + rpclogger.Infof("%s %s", req.Method, req.Params) switch req.Method { case "web3_sha3": |