Issue #3242 - Post-review cleanup of ProxyEndPoint

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2019-01-11 10:23:51 -06:00
parent 478e5ac593
commit e9143725b0
1 changed files with 6 additions and 1 deletions

View File

@ -622,7 +622,12 @@ public class ProxyConnectionFactory extends AbstractConnectionFactory
@Override
public String toString() {
return _endp.toString();
return String.format("%s@%x[remote=%s,local=%s,endpoint=%s]",
getClass().getSimpleName(),
hashCode(),
_remote,
_local,
_endp);
}
@Override