mirror of https://github.com/grpc/grpc-go.git
add TODO to fix trace
This commit is contained in:
parent
ee98c48bb4
commit
86db82df28
|
|
@ -319,7 +319,9 @@ func (s *Server) processUnaryRPC(t transport.ServerTransport, stream *transport.
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if traceInfo.tr != nil {
|
if traceInfo.tr != nil {
|
||||||
traceInfo.tr.LazyLog(&payload{sent: false, msg: req}, true)
|
// TODO: set payload.msg to something that
|
||||||
|
// prints usefully with %s; req is a []byte.
|
||||||
|
traceInfo.tr.LazyLog(&payload{sent: false}, true)
|
||||||
}
|
}
|
||||||
switch pf {
|
switch pf {
|
||||||
case compressionNone:
|
case compressionNone:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue