diff options
author | Charles E. Rolke <chug@apache.org> | 2012-06-11 20:53:47 +0000 |
---|---|---|
committer | Charles E. Rolke <chug@apache.org> | 2012-06-11 20:53:47 +0000 |
commit | 35f30ce23af989b23b57a50f2c4b97bf486b1d64 (patch) | |
tree | 73a844c4a53d4873cb15cd661f9a3880823220ab /qpid/cpp/src/tests/logging.cpp | |
parent | a72e355e7458497c0f993e1259e09167af113f01 (diff) | |
download | qpid-python-35f30ce23af989b23b57a50f2c4b97bf486b1d64.tar.gz |
QPID-3902 C++ Broker add log categories
svn merge --reintegrate from branch qpid/branches/qpid-3902/qpid
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1349006 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/logging.cpp')
-rw-r--r-- | qpid/cpp/src/tests/logging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/logging.cpp b/qpid/cpp/src/tests/logging.cpp index 5d5bb1feef..47e601ed05 100644 --- a/qpid/cpp/src/tests/logging.cpp +++ b/qpid/cpp/src/tests/logging.cpp @@ -258,7 +258,7 @@ QPID_AUTO_TEST_CASE(testOverhead) { Statement statement( Level level, const char* file="", int line=0, const char* fn=0) { - Statement s={0, file, line, fn, level}; + Statement s={0, file, line, fn, level, ::qpid::log::unspecified}; return s; } |