Print the exception for which the connection was closed.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2511 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2005-07-23 15:56:06 +00:00 committed by gaston
parent 74028cdb9f
commit 49847ac1c6
1 changed files with 2 additions and 0 deletions

View File

@ -203,6 +203,8 @@ class PacketReader {
void notifyConnectionError(Exception e) {
done = true;
connection.close();
// Print the stack trace to help catch the problem
e.printStackTrace();
// Notify connection listeners of the error.
ArrayList listenersCopy;
synchronized (connectionListeners) {