summaryrefslogtreecommitdiff
path: root/lib/common/Logging.h
diff options
context:
space:
mode:
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
};
// --------------------------------------------------------------------------