1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 06:12:05 +01:00

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

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());