优化日志输出代码

This commit is contained in:
liwei1dao 2022-09-28 21:03:21 +08:00
parent 0f320cb41b
commit 656fb4226b

View File

@ -270,8 +270,8 @@ func (this *Agent) messageDistribution(msg *pb.UserMessage) (err error) {
if err = this.gateway.Service().RpcCall(context.Background(), servicePath, string(comm.Rpc_GatewayRoute), req, reply); err != nil { if err = this.gateway.Service().RpcCall(context.Background(), servicePath, string(comm.Rpc_GatewayRoute), req, reply); err != nil {
this.gateway.Error("[UserResponse]", this.gateway.Error("[UserResponse]",
log.Field{Key: "uid", Value: this.uId}, log.Field{Key: "uid", Value: this.uId},
log.Field{Key: "req", Value: req}, log.Field{Key: "req", Value: req.String()},
log.Field{Key: "err", Value: err}, log.Field{Key: "err", Value: err.Error()},
) )
return return
} }
@ -280,7 +280,7 @@ func (this *Agent) messageDistribution(msg *pb.UserMessage) (err error) {
this.gateway.Error("[UserResponse]", this.gateway.Error("[UserResponse]",
log.Field{Key: "uid", Value: this.uId}, log.Field{Key: "uid", Value: this.uId},
log.Field{Key: "req", Value: req.String()}, log.Field{Key: "req", Value: req.String()},
log.Field{Key: "err", Value: err}, log.Field{Key: "err", Value: err.Error()},
) )
return return
} }