diff options
author | Bhupendra Bhusman Bhardwaj <bhupendrab@apache.org> | 2007-01-17 11:24:41 +0000 |
---|---|---|
committer | Bhupendra Bhusman Bhardwaj <bhupendrab@apache.org> | 2007-01-17 11:24:41 +0000 |
commit | ab1aa368449bf607fef98f19d19aaceaf4e31cc0 (patch) | |
tree | bf5b24917315fdbf3ebd82adb82c4e07f653d0c1 | |
parent | 783b2c2cacd1d1d8a2742223ad91c02e54448f1a (diff) | |
download | qpid-python-ab1aa368449bf607fef98f19d19aaceaf4e31cc0.tar.gz |
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@496996 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/ServiceRequestingClient.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/ServiceRequestingClient.java b/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/ServiceRequestingClient.java index 27bf8c74ea..cbdd498b37 100644 --- a/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/ServiceRequestingClient.java +++ b/qpid/java/perftests/src/main/java/org/apache/qpid/requestreply/ServiceRequestingClient.java @@ -205,7 +205,6 @@ public class ServiceRequestingClient implements ExceptionListener // exit if callbackHandler has received all messages if (_completed) { - _log.info("timer " + new java.util.Date()); return; } } @@ -261,8 +260,8 @@ public class ServiceRequestingClient implements ExceptionListener { _isTransactional = transactedMode; - _log.info("Delivery Mode: " + (deliveryMode == DeliveryMode.NON_PERSISTENT ? "Non Persistent" : "Persistent") + - "\t isTransactional: " + _isTransactional); + _log.info("Delivery Mode: " + (deliveryMode == DeliveryMode.NON_PERSISTENT ? "Non Persistent" : "Persistent")); + _log.info("isTransactional: " + _isTransactional); _messageCount = messageCount; MESSAGE_DATA = TestMessageFactory.createMessagePayload(messageDataLength); |