mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Add missing space in log statement within XMPPTCPConnection
This commit is contained in:
parent
e0a2441c62
commit
3b8f4c144e
1 changed files with 1 additions and 1 deletions
|
@ -526,7 +526,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
|
||||||
}
|
}
|
||||||
innerloop: while (inetAddresses.hasNext()) {
|
innerloop: while (inetAddresses.hasNext()) {
|
||||||
final InetAddress inetAddress = inetAddresses.next();
|
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);
|
LOGGER.finer("Trying to establish TCP connection to " + inetAddressAndPort);
|
||||||
try {
|
try {
|
||||||
socket.connect(new InetSocketAddress(inetAddress, port), config.getConnectTimeout());
|
socket.connect(new InetSocketAddress(inetAddress, port), config.getConnectTimeout());
|
||||||
|
|
Loading…
Reference in a new issue