diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-24 22:21:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-24 22:21:02 +0300 |
commit | 490a93a1d7a347ab586637bf9d8163e114285a02 (patch) | |
tree | cae315ef7502f6e9b4b55bd68bac66d5fb8e33ff /src/logger.h | |
parent | a5926417dad1f91966ccacfc5572369d309c59be (diff) | |
download | plus-490a93a1d7a347ab586637bf9d8163e114285a02.tar.gz plus-490a93a1d7a347ab586637bf9d8163e114285a02.tar.bz2 plus-490a93a1d7a347ab586637bf9d8163e114285a02.tar.xz plus-490a93a1d7a347ab586637bf9d8163e114285a02.zip |
Add safe error string reporting function.
Diffstat (limited to 'src/logger.h')
-rw-r--r-- | src/logger.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/logger.h b/src/logger.h index db618b275..3dc24420d 100644 --- a/src/logger.h +++ b/src/logger.h @@ -98,6 +98,13 @@ class Logger */ void error(const std::string &error_text) __attribute__ ((noreturn)); + /** + * Log an error and quit. The error will pop-up on Windows and Mac, and + * will be printed to standard error everywhere else. + */ + void safeError(const std::string &error_text) + __attribute__ ((noreturn)); + private: std::ofstream mLogFile; bool mLogToStandardOut; |