mirror of https://github.com/grpc/grpc-java.git
core: Override SubchannelImpl.toString() (#3265)
LoadBalancer may log subchannels. This makes the logs more informative.
This commit is contained in:
parent
db279eb3c1
commit
0fb0fda3e1
|
|
@ -940,5 +940,10 @@ public final class ManagedChannelImpl extends ManagedChannel implements WithLogI
|
|||
public Attributes getAttributes() {
|
||||
return attrs;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return subchannel.getLogId().toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue