summaryrefslogtreecommitdiff
path: root/src/logger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/logger.h')
-rw-r--r--src/logger.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/logger.h b/src/logger.h
index 4ddf28818..9e82670ad 100644
--- a/src/logger.h
+++ b/src/logger.h
@@ -130,6 +130,9 @@ class Logger final
void setDebugLog(const bool n)
{ mDebugLog = n; }
+ void setReportUnimplimented(const bool n)
+ { mReportUnimplimented = n; }
+
/**
* Log an error and quit. The error will pop-up on Windows and Mac, and
* will be printed to standard error everywhere else.
@@ -152,6 +155,7 @@ class Logger final
volatile bool mThreadLocked;
bool mLogToStandardOut;
bool mDebugLog;
+ bool mReportUnimplimented;
};
extern Logger *logger;