Log connectionClosedOnError exceptions

This commit is contained in:
Florian Schmaus 2014-04-26 19:42:26 +02:00
parent 790ebeca33
commit 86ad192bea
1 changed files with 1 additions and 0 deletions

View File

@ -1017,6 +1017,7 @@ public abstract class XMPPConnection {
}
void callConnectionClosedOnErrorListener(Exception e) {
LOGGER.log(Level.WARNING, "Connection closed with error", e);
for (ConnectionListener listener : getConnectionListeners()) {
try {
listener.connectionClosedOnError(e);