diff options
Diffstat (limited to 'src/net/java/sip/communicator/impl/protocol/jabber/OutgoingFileTransferJabberImpl.java')
-rw-r--r-- | src/net/java/sip/communicator/impl/protocol/jabber/OutgoingFileTransferJabberImpl.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/net/java/sip/communicator/impl/protocol/jabber/OutgoingFileTransferJabberImpl.java b/src/net/java/sip/communicator/impl/protocol/jabber/OutgoingFileTransferJabberImpl.java index 8543cde..7be6be5 100644 --- a/src/net/java/sip/communicator/impl/protocol/jabber/OutgoingFileTransferJabberImpl.java +++ b/src/net/java/sip/communicator/impl/protocol/jabber/OutgoingFileTransferJabberImpl.java @@ -174,7 +174,8 @@ public class OutgoingFileTransferJabberImpl if (!(file instanceof ThumbnailedFile)) return; - logger.debug("File transfer packet intercepted" + if (logger.isDebugEnabled()) + logger.debug("File transfer packet intercepted" + " in order to add thumbnail."); StreamInitiation fileTransferPacket = (StreamInitiation) packet; @@ -197,7 +198,8 @@ public class OutgoingFileTransferJabberImpl fileTransferPacket.setFile(fileElement); - logger.debug("The file transfer packet with thumbnail: " + if (logger.isDebugEnabled()) + logger.debug("The file transfer packet with thumbnail: " + fileTransferPacket.toXML()); // Add the request listener in order to listen for requests coming @@ -243,7 +245,8 @@ public class OutgoingFileTransferJabberImpl thumbnailedFile.getThumbnailData(), IQ.Type.RESULT); - logger.debug("Send thumbnail response to the receiver: " + if (logger.isDebugEnabled()) + logger.debug("Send thumbnail response to the receiver: " + thumbnailResponse.toXML()); protocolProvider.getConnection() |