diff options
Diffstat (limited to 'rpc/handler.go')
-rw-r--r-- | rpc/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/handler.go b/rpc/handler.go index bc03ef25f..92db89e2f 100644 --- a/rpc/handler.go +++ b/rpc/handler.go @@ -297,7 +297,7 @@ func (h *handler) handleCallMsg(ctx *callProc, msg *jsonrpcMessage) *jsonrpcMess case msg.isCall(): resp := h.handleCall(ctx, msg) if resp.Error != nil { - h.log.Info("Served "+msg.Method, "reqid", idForLog{msg.ID}, "t", time.Since(start), "err", resp.Error.Message) + h.log.Warn("Served "+msg.Method, "reqid", idForLog{msg.ID}, "t", time.Since(start), "err", resp.Error.Message) } else { h.log.Debug("Served "+msg.Method, "reqid", idForLog{msg.ID}, "t", time.Since(start)) } |