Commit cb2c10d8 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke

Merge pull request #1366 from ethers/rpcRequest

fix logging jsonrpc request #1365
parents be935bff d0530547
...@@ -42,7 +42,7 @@ func (self *MergedApi) Methods() []string { ...@@ -42,7 +42,7 @@ func (self *MergedApi) Methods() []string {
// Call the correct API's Execute method for the given request // Call the correct API's Execute method for the given request
func (self *MergedApi) Execute(req *shared.Request) (interface{}, error) { func (self *MergedApi) Execute(req *shared.Request) (interface{}, error) {
glog.V(logger.Detail).Infof("rpc method: %s", req.Method) glog.V(logger.Detail).Infof("%s %s", req.Method, req.Params)
if res, _ := self.handle(req); res != nil { if res, _ := self.handle(req); res != nil {
return res, nil return res, nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment