remove error printing when decoding error in communication feature of gproc

This commit is contained in:
John
2020-02-06 19:21:17 +08:00
parent e8dd3979b6
commit 1e45bf93d8

View File

@ -90,7 +90,7 @@ func receiveTcpHandler(conn *gtcp.Conn) {
// Package decoding.
msg := new(MsgRequest)
if err := json.Unmarshal(buffer, msg); err != nil {
glog.Error(err)
//glog.Error(err)
continue
}
if msg.RecvPid != Pid() {