summaryrefslogtreecommitdiff
path: root/qpid/cpp/include
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2013-02-12 20:58:45 +0000
committerCharles E. Rolke <chug@apache.org>2013-02-12 20:58:45 +0000
commit9ecd81538a702428d631cb3ec65076a59f16132f (patch)
treeaa242ecb0d7a520f8f6948f9c0bf9d54e2c5449b /qpid/cpp/include
parent47ad697c8cbd54cdfa126b8f980578a873dfd028 (diff)
downloadqpid-python-9ecd81538a702428d631cb3ec65076a59f16132f.tar.gz
QPID-4054: C++ Broker connection limits specified per-user
From the self-test log file: 2013-02-12 15:33:53 [Broker] notice Changing log hires timestamp to 1 2013-02-12 15:33:53.219003940 [Broker] debug Broker::setLogHiresTimestamp() ... 2013-02-12 15:33:53.491318800 [Broker] notice Changing log hires timestamp to 0 2013-02-12 15:33:53 [Broker] debug Broker::setLogHiresTimestamp() git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1445358 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
-rw-r--r--qpid/cpp/include/qpid/log/Logger.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/cpp/include/qpid/log/Logger.h b/qpid/cpp/include/qpid/log/Logger.h
index 9464fa52dd..8c4beb0785 100644
--- a/qpid/cpp/include/qpid/log/Logger.h
+++ b/qpid/cpp/include/qpid/log/Logger.h
@@ -95,6 +95,11 @@ class QPID_COMMON_CLASS_EXTERN Logger : private boost::noncopyable {
/** Get the options used to configure the logger. */
QPID_COMMON_INLINE_EXTERN const Options& getOptions() const { return options; }
+ /** Get the hires timestamp setting */
+ QPID_COMMON_EXTERN bool getHiresTimestamp();
+
+ /** Set the hires timestamp setting */
+ QPID_COMMON_EXTERN void setHiresTimestamp(bool setting);
private:
typedef boost::ptr_vector<Output> Outputs;