summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2009-07-05 21:46:33 +0000
committerChris Wilson <chris+github@qwirx.com>2009-07-05 21:46:33 +0000
commit78d2d63c8f9b15c2b69cd5a410961e612a72452f (patch)
tree1bd31a71ee5545f5f01eadf7210a63b7969339b0
parent21c1cbf94056cd4fd5c9efabec7aa0b83049eaaa (diff)
Add a static variable to store the exceptions suppressed flag.
-rw-r--r--lib/common/Logging.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common/Logging.cpp b/lib/common/Logging.cpp
index 1666b487..681e1352 100644
--- a/lib/common/Logging.cpp
+++ b/lib/common/Logging.cpp
@@ -33,6 +33,8 @@ bool Logging::sLogToSyslog = false;
bool Logging::sLogToConsole = false;
bool Logging::sContextSet = false;
+bool HideExceptionMessageGuard::sHiddenState = false;
+
std::vector<Logger*> Logging::sLoggers;
std::string Logging::sContext;
Console* Logging::spConsole = NULL;