diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-10-23 12:49:59 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-10-23 12:49:59 +0000 |
commit | 6b509c871fae213fc2cf6b434e670c8d3bd953b4 (patch) | |
tree | cbed5e7add0eb1c3224b6acf755c17f9005e2255 /cpp/src | |
parent | 037c28c0c658b44529783b79a6b895e3b89dc699 (diff) | |
download | qpid-python-6b509c871fae213fc2cf6b434e670c8d3bd953b4.tar.gz |
- removed debug cout
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@587485 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/broker/Queue.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Queue.cpp b/cpp/src/qpid/broker/Queue.cpp index b72cbc5721..df34669dc2 100644 --- a/cpp/src/qpid/broker/Queue.cpp +++ b/cpp/src/qpid/broker/Queue.cpp @@ -347,7 +347,6 @@ bool Queue::canAutoDelete() const{ bool Queue::enqueue(TransactionContext* ctxt, Message::shared_ptr msg) { if (msg->isPersistent() && store) { -std::cout << "-------------- enqueue ------------" << std::endl << std::flush; msg->enqueueAsync(this, store); //increment to async counter -- for message sent to more than one queue store->enqueue(ctxt, *msg.get(), *this); return true; |