summaryrefslogtreecommitdiff
path: root/java/client
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2008-02-25 14:50:04 +0000
committerMartin Ritchie <ritchiem@apache.org>2008-02-25 14:50:04 +0000
commit5a7d2f803b1a182559456c53d094ca00d5523503 (patch)
tree6f140de85432f4e93df92154a715c35df048a237 /java/client
parentbebe105fb31e305a10802827448555107fd2461c (diff)
downloadqpid-python-5a7d2f803b1a182559456c53d094ca00d5523503.tar.gz
QPID-809 Updated logging and removed an unnecessary printStackTrace().
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@630865 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
-rw-r--r--java/client/src/main/java/org/apache/qpid/client/AMQSession.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/AMQSession.java b/java/client/src/main/java/org/apache/qpid/client/AMQSession.java
index 73f3ccbee4..2ecc0515a5 100644
--- a/java/client/src/main/java/org/apache/qpid/client/AMQSession.java
+++ b/java/client/src/main/java/org/apache/qpid/client/AMQSession.java
@@ -615,7 +615,6 @@ public class AMQSession extends Closeable implements Session, QueueSession, Topi
final AMQFrame frame = body.generateFrame(getChannelId());
getProtocolHandler().syncWrite(frame, ChannelCloseOkBody.class, timeout);
-
// When control resumes at this point, a reply will have been received that
// indicates the broker has closed the channel successfully.
@@ -1759,11 +1758,6 @@ public class AMQSession extends Closeable implements Session, QueueSession, Topi
{
JMSException ex = new JMSException("Error registering consumer: " + e);
- if (_logger.isDebugEnabled())
- {
- e.printStackTrace();
- }
-
ex.setLinkedException(e);
throw ex;
}