diff options
author | Sebastien Vincent <seb@jitsi.org> | 2010-12-01 15:14:29 +0000 |
---|---|---|
committer | Sebastien Vincent <seb@jitsi.org> | 2010-12-01 15:14:29 +0000 |
commit | 1cd7e976164a1c3db82b74a9b9a98a5fcef4019a (patch) | |
tree | 301faa218dba369f3d871792725a2cec2f579f3d /src/net/java/sip/communicator/impl/protocol | |
parent | ee23336e707dd7264b256b231af290c07eae532c (diff) | |
download | jitsi-1cd7e976164a1c3db82b74a9b9a98a5fcef4019a.zip jitsi-1cd7e976164a1c3db82b74a9b9a98a5fcef4019a.tar.gz jitsi-1cd7e976164a1c3db82b74a9b9a98a5fcef4019a.tar.bz2 |
Fix callee name in error message.
Diffstat (limited to 'src/net/java/sip/communicator/impl/protocol')
-rw-r--r-- | src/net/java/sip/communicator/impl/protocol/jabber/OperationSetBasicTelephonyJabberImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetBasicTelephonyJabberImpl.java b/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetBasicTelephonyJabberImpl.java index 6d45f71..ac6bfa2 100644 --- a/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetBasicTelephonyJabberImpl.java +++ b/src/net/java/sip/communicator/impl/protocol/jabber/OperationSetBasicTelephonyJabberImpl.java @@ -266,7 +266,7 @@ public class OperationSetBasicTelephonyJabberImpl if(di != null) { if (logger.isInfoEnabled()) - logger.info(fullCalleeURI + ": jingle supported "); + logger.info(calleeAddress + ": jingle supported "); } else { @@ -274,7 +274,7 @@ public class OperationSetBasicTelephonyJabberImpl logger.info(calleeAddress + ": jingle not supported ?"); throw new OperationFailedException( "Failed to create OutgoingJingleSession.\n" - + fullCalleeURI + " does not support jingle", + + calleeAddress + " does not support jingle", OperationFailedException.INTERNAL_ERROR); } |