diff options
Diffstat (limited to 'rpc/http')
-rw-r--r-- | rpc/http/server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/http/server.go b/rpc/http/server.go index caa50d67c..7dcd6b867 100644 --- a/rpc/http/server.go +++ b/rpc/http/server.go @@ -88,7 +88,7 @@ func (s *RpcHttpServer) apiHandler(api *rpc.EthereumApi) http.Handler { fn := func(w http.ResponseWriter, req *http.Request) { w.Header().Set("Access-Control-Allow-Origin", "*") - rpchttplogger.Debugln("Handling request") + rpchttplogger.DebugDetailln("Handling request") reqParsed, reqerr := JSON.ParseRequestBody(req) if reqerr != nil { |