summaryrefslogtreecommitdiff
path: root/lib/common/Logging.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-08-03 06:56:16 +0000
committerChris Wilson <chris+github@qwirx.com>2008-08-03 06:56:16 +0000
commitcd77024172fd0e5d0d0d3b357609ee64db899698 (patch)
tree218572433aaef18b9f26cf31390ea2a9af1bd304 /lib/common/Logging.h
parent430bbb36f6e1040333a22b79938938754dd49aac (diff)
Remove Windows limitation on Logging that showing PID was not possible.
Diffstat (limited to 'lib/common/Logging.h')
-rw-r--r--lib/common/Logging.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/common/Logging.h b/lib/common/Logging.h
index 12860444..6224a73f 100644
--- a/lib/common/Logging.h
+++ b/lib/common/Logging.h
@@ -147,9 +147,7 @@ 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,
@@ -160,9 +158,7 @@ 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
};
// --------------------------------------------------------------------------