summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-11-12 11:04:54 +0000
committerGordon Sim <gsim@apache.org>2013-11-12 11:04:54 +0000
commit50595b9c333b08327462fa3693a5ba4cdced76e6 (patch)
tree755b2694879917594d0f9b87d49dcfb36c272ca7
parente9b7012316fb5b8cbac9ef79637638776e0ebccf (diff)
downloadqpid-python-50595b9c333b08327462fa3693a5ba4cdced76e6.tar.gz
QPID-5324: log error for rejected filter (as well as throwing exception)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1541002 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/broker/Queue.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/broker/Queue.cpp b/qpid/cpp/src/qpid/broker/Queue.cpp
index a096c5929a..3eaab30394 100644
--- a/qpid/cpp/src/qpid/broker/Queue.cpp
+++ b/qpid/cpp/src/qpid/broker/Queue.cpp
@@ -693,6 +693,7 @@ namespace {
}
}
}
+ QPID_LOG(error, "Unrecognized message filter: '" << *filter << "'");
throw qpid::Exception(QPID_MSG("Unrecognized message filter: '" << *filter << "'"));
}
return new MessageFilter();