Add missing space in log statement within XMPPTCPConnection

This commit is contained in:
Florian Schmaus 2015-02-08 13:27:49 +01:00
parent e0a2441c62
commit 3b8f4c144e
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
}
innerloop: while (inetAddresses.hasNext()) {
final InetAddress inetAddress = inetAddresses.next();
final String inetAddressAndPort = inetAddress + "at port " + port;
final String inetAddressAndPort = inetAddress + " at port " + port;
LOGGER.finer("Trying to establish TCP connection to " + inetAddressAndPort);
try {
socket.connect(new InetSocketAddress(inetAddress, port), config.getConnectTimeout());