log host/port connecting to. Too useful to omit.

This commit is contained in:
Andy2 2010-11-01 18:53:36 -07:00
parent 8f55469930
commit 1e5a856287

View file

@ -144,6 +144,9 @@ public class CommsTransport extends Thread implements TransportProcs {
try {
m_socketChannel = SocketChannel.open();
m_socketChannel.configureBlocking( false );
Utils.logf( "connecting to %s:%d",
m_addr.ip_relay_hostName,
m_addr.ip_relay_port );
InetSocketAddress isa
= new InetSocketAddress( m_addr.ip_relay_hostName,
m_addr.ip_relay_port );