|
@@ -155,7 +155,7 @@ function CMD.s2c(uid, name, msg)
|
155
|
155
|
return
|
156
|
156
|
end
|
157
|
157
|
|
158
|
|
- log.proto("push uid=%s, name=%s, msg=%s", uid, name, tostring(msg))
|
|
158
|
+ -- log.proto("push uid=%s, name=%s, msg=%s", uid, name, tostring(msg))
|
159
|
159
|
|
160
|
160
|
local rs = protoUtil:encode_s2c_req(name, msg)
|
161
|
161
|
skynet.send(GATE, "lua", "send_to_client", fd, rs)
|
|
@@ -168,7 +168,7 @@ function CMD.c2s_response(uid, name, msg, session, ud)
|
168
|
168
|
return
|
169
|
169
|
end
|
170
|
170
|
|
171
|
|
- log.proto("response uid=%s, name=%s, msg=%s", uid, name, tostring(msg))
|
|
171
|
+ -- log.proto("response uid=%s, name=%s, msg=%s", uid, name, tostring(msg))
|
172
|
172
|
|
173
|
173
|
local rs = protoUtil:encode_c2s_rsp_ex(name, msg, session, ud)
|
174
|
174
|
|