aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmil Ivov <emcho@jitsi.org>2012-09-13 13:27:08 +0000
committerEmil Ivov <emcho@jitsi.org>2012-09-13 13:27:08 +0000
commitceac37aa4f6eb66a1410f979443477f0c8699110 (patch)
tree43e8c45193d3606787f3eb10602a98b6aa496f9c
parent1cbd7cd5799f90e21f0bd4310253ae5e96f26e9a (diff)
downloadjitsi-ceac37aa4f6eb66a1410f979443477f0c8699110.zip
jitsi-ceac37aa4f6eb66a1410f979443477f0c8699110.tar.gz
jitsi-ceac37aa4f6eb66a1410f979443477f0c8699110.tar.bz2
Applies a patch from Boris Grozev that fixes an exception thrown when an account is enabled through the options window while trace logging is on.
-rw-r--r--src/net/java/sip/communicator/impl/gui/main/account/AccountList.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/java/sip/communicator/impl/gui/main/account/AccountList.java b/src/net/java/sip/communicator/impl/gui/main/account/AccountList.java
index ca4db75..64fe6c8 100644
--- a/src/net/java/sip/communicator/impl/gui/main/account/AccountList.java
+++ b/src/net/java/sip/communicator/impl/gui/main/account/AccountList.java
@@ -312,7 +312,8 @@ public class AccountList
Account account = (Account) getModel().getElementAt(mouseIndex);
if (logger.isTraceEnabled())
- logger.trace("Account list: element at mouse index:" + account);
+ logger.trace("Account list: element at mouse index:"
+ + account.getName());
AccountListCellRenderer renderer
= (AccountListCellRenderer) getCellRenderer()