diff options
| author | Gordon Sim <gsim@apache.org> | 2013-11-12 11:04:54 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-11-12 11:04:54 +0000 |
| commit | 3741945c58f6b835003bbdb978efa34ff6a681b5 (patch) | |
| tree | 3f3ccf39848bb623320bf155e520338c61ff1661 /cpp/src | |
| parent | 25ad311c533822161c4ef88b770b805bc8207f86 (diff) | |
| download | qpid-python-3741945c58f6b835003bbdb978efa34ff6a681b5.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/qpid@1541002 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/broker/Queue.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/qpid/broker/Queue.cpp b/cpp/src/qpid/broker/Queue.cpp index a096c5929a..3eaab30394 100644 --- a/cpp/src/qpid/broker/Queue.cpp +++ b/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(); |
