diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-10-05 14:58:33 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-10-05 14:58:33 +0000 |
| commit | ba3e298ae151a8328ab9a9caf4bd1ba947b032b8 (patch) | |
| tree | e36f11bbc5211f5e723f7cf9867bc0dce9b6c0ea /java/client/src | |
| parent | aa79c6bf0fa57d81ee03bc61d0c828aa44e7bd93 (diff) | |
| download | qpid-python-ba3e298ae151a8328ab9a9caf4bd1ba947b032b8.tar.gz | |
Updated BlockingWaiter to provided more details when a new exception arrives and the old one has not been consumed
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@821817 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src')
| -rw-r--r-- | java/client/src/main/java/org/apache/qpid/client/util/BlockingWaiter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/util/BlockingWaiter.java b/java/client/src/main/java/org/apache/qpid/client/util/BlockingWaiter.java index 67cda957fb..a3d015eadc 100644 --- a/java/client/src/main/java/org/apache/qpid/client/util/BlockingWaiter.java +++ b/java/client/src/main/java/org/apache/qpid/client/util/BlockingWaiter.java @@ -253,7 +253,7 @@ public abstract class BlockingWaiter<T> } else { - System.err.println("WARNING: new error arrived while old one not yet processed"); + System.err.println("WARNING: new error '" + e == null ? "null" : e.getMessage() + "' arrived while old one not yet processed:" + _error.getMessage()); } try |
