summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/PartialFailure.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-10-05 18:09:34 +0000
committerAlan Conway <aconway@apache.org>2009-10-05 18:09:34 +0000
commit0565f85cb739b59394231b55055c0bc1531f82b3 (patch)
tree796c21edd2c45f1070c9c3c14b7f00b8b2b2a133 /qpid/cpp/src/tests/PartialFailure.cpp
parent7ef06f1f4b9d07bef099dc0d1dbb948cadf32b61 (diff)
downloadqpid-python-0565f85cb739b59394231b55055c0bc1531f82b3.tar.gz
Minor improvements to cluster logging.
Include the original error message in critical log messages. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@821948 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/PartialFailure.cpp')
-rw-r--r--qpid/cpp/src/tests/PartialFailure.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/PartialFailure.cpp b/qpid/cpp/src/tests/PartialFailure.cpp
index 5de8ecb189..08c326cd02 100644
--- a/qpid/cpp/src/tests/PartialFailure.cpp
+++ b/qpid/cpp/src/tests/PartialFailure.cpp
@@ -93,7 +93,7 @@ QPID_AUTO_TEST_CASE(testCoincidentErrors) {
c0.session.queueDeclare("q", durable=true);
{
- ScopedSuppressLogging allQuiet;
+ // ScopedSuppressLogging allQuiet;
async(c0.session).messageTransfer(content=pMessage("TEST_STORE_DO: s0[exception]", "q"));
async(c1.session).messageTransfer(content=pMessage("TEST_STORE_DO: s1[exception]", "q"));
@@ -118,7 +118,7 @@ QPID_AUTO_TEST_CASE(testNormalErrors) {
Client c2(cluster[2], "c2");
{
- ScopedSuppressLogging allQuiet;
+ // ScopedSuppressLogging allQuiet;
queueAndSub(c0);
c0.session.messageTransfer(content=Message("x", "c0"));
BOOST_CHECK_EQUAL(c0.lq.get(TIMEOUT).getData(), "x");
@@ -147,7 +147,7 @@ QPID_AUTO_TEST_CASE(testErrorAfterJoin) {
ClusterFixture cluster(1, updateArgs, -1);
Client c0(cluster[0]);
{
- ScopedSuppressLogging allQuiet;
+ // ScopedSuppressLogging allQuiet;
c0.session.queueDeclare("q", durable=true);
c0.session.messageTransfer(content=pMessage("a", "q"));