summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/log/Options.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/log/Options.h')
-rw-r--r--cpp/src/qpid/log/Options.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/qpid/log/Options.h b/cpp/src/qpid/log/Options.h
index 39261c9b5d..441c6e8a8d 100644
--- a/cpp/src/qpid/log/Options.h
+++ b/cpp/src/qpid/log/Options.h
@@ -18,20 +18,20 @@
* limitations under the License.
*
*/
-#include "qpid/CommonOptions.h"
+#include "qpid/Options.h"
namespace qpid {
namespace log {
/** Logging options for config parser. */
-struct Options {
- Options();
- void addTo(po::options_description&);
+struct Options : public qpid::Options {
+ Options(const std::string& name="Logging options");
std::vector<std::string> selectors;
std::vector<std::string> outputs;
bool time, level, thread, source, function;
+ bool trace;
};