From 5c00172f6a8d6c5f7e39f47badf1ac30fd25bccd Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Wed, 10 Feb 2016 14:54:32 +0100 Subject: [PATCH] Remove log statement was added to diagnose an issue, should have never made it into master. --- .../main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java | 1 - 1 file changed, 1 deletion(-) diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java index 51269401a..963a2bac6 100644 --- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java +++ b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java @@ -484,7 +484,6 @@ public class XMPPTCPConnection extends AbstractXMPPConnection { // closing stream element sent by the server or wait with a timeout for a // closing stream element to be received from the server. Exception res = closingStreamReceived.checkIfSuccessOrWait(); - LOGGER.info("closingstream " + res); } catch (InterruptedException | NoResponseException e) { LOGGER.log(Level.INFO, "Exception while waiting for closing stream element from the server " + this, e); }