summaryrefslogtreecommitdiff
path: root/lib/common/Logging.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-02-22 00:43:16 +0000
committerChris Wilson <chris+github@qwirx.com>2008-02-22 00:43:16 +0000
commit1a948d1c2b1eb2d8b868e81648fb19d359b71a8e (patch)
tree7adccf33ccd43493e16df2773b447ee7285abd69 /lib/common/Logging.h
parent77a70367258e4eb99c455026e79156c680aa8909 (diff)
Disable -P option and showing PID in Logging on Windows.
Diffstat (limited to 'lib/common/Logging.h')
-rw-r--r--lib/common/Logging.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/common/Logging.h b/lib/common/Logging.h
index f26fd217..21c23a7e 100644
--- a/lib/common/Logging.h
+++ b/lib/common/Logging.h
@@ -121,7 +121,9 @@ class Console : public Logger
static bool sShowTimeMicros;
static bool sShowTag;
static std::string sTag;
+ #ifndef WIN32
static bool sShowPID;
+ #endif
public:
virtual bool Log(Log::Level level, const std::string& rFile,
@@ -132,7 +134,9 @@ class Console : public Logger
static void SetTag(const std::string& rTag);
static void SetShowTime(bool enabled);
static void SetShowTimeMicros(bool enabled);
+ #ifndef WIN32
static void SetShowPID(bool enabled);
+ #endif
};
// --------------------------------------------------------------------------