diff options
author | Emil Ivov <emcho@jitsi.org> | 2012-09-13 13:27:08 +0000 |
---|---|---|
committer | Emil Ivov <emcho@jitsi.org> | 2012-09-13 13:27:08 +0000 |
commit | ceac37aa4f6eb66a1410f979443477f0c8699110 (patch) | |
tree | 43e8c45193d3606787f3eb10602a98b6aa496f9c | |
parent | 1cbd7cd5799f90e21f0bd4310253ae5e96f26e9a (diff) | |
download | jitsi-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.java | 3 |
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() |