on etcd 3.1.1, start with etcd --debug=true does not enable any client access log when using by gRPC.
checked gRPC document, it looks like grpc employ trace by golang.org/x/net/trace, but checked etcd's code in etcd.go
func startEtcdOrProxyV2() {
grpc.EnableTracing = false
...
by modified the above false to true and the rebuild, I can still can not access the trace by /debug/requests,
so How can we enable client's access log (i.e. request url, args, response status, response size etc) with gRPC?