mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 09:42:22 +00:00
rpc: make rpc request logging at Debug level
Makes no sense polluting logs with Info. It also affects benchmarking.
This commit is contained in:
parent
a52e016c22
commit
b5f234ddef
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ func (s *Server) requestHandler(w http.ResponseWriter, httpRequest *http.Request
|
|||
}
|
||||
|
||||
func (s *Server) methodHandler(w http.ResponseWriter, req *Request, reqParams Params) {
|
||||
s.log.Info("processing rpc request",
|
||||
s.log.Debug("processing rpc request",
|
||||
zap.String("method", req.Method),
|
||||
zap.String("params", fmt.Sprintf("%v", reqParams)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue