summaryrefslogtreecommitdiff
path: root/lib/common/Logging.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-12-15 20:03:50 +0000
committerChris Wilson <chris+github@qwirx.com>2007-12-15 20:03:50 +0000
commitccc0bce45b99b3fcc73b4c217ef6c2088abde4dd (patch)
tree83387af23316c76cb7f2c4b2d34c2ea3ee8b191e /lib/common/Logging.h
parentf5d99a3d47fd8a99ba41d909d01efdeecfddcc74 (diff)
Allow logging with microsecond timestamps.
Diffstat (limited to 'lib/common/Logging.h')
-rw-r--r--lib/common/Logging.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common/Logging.h b/lib/common/Logging.h
index 9753fc88..78db2bea 100644
--- a/lib/common/Logging.h
+++ b/lib/common/Logging.h
@@ -118,6 +118,7 @@ class Console : public Logger
{
private:
static bool sShowTime;
+ static bool sShowTimeMicros;
static bool sShowTag;
static std::string sTag;
@@ -129,6 +130,7 @@ class Console : public Logger
static void SetTag(const std::string& rTag);
static void SetShowTime(bool enabled);
+ static void SetShowTimeMicros(bool enabled);
};
// --------------------------------------------------------------------------