diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:02:17 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:02:17 +0200 |
commit | b9203ee84953006547f4afd58f405874c87bf0dc (patch) | |
tree | 9e41f1533f120e9268e86658c52458630ffd718a /library/errorLogging.h | |
parent | 3.0 (diff) | |
download | FreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.tar.gz FreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.tar.bz2 FreeFileSync-b9203ee84953006547f4afd58f405874c87bf0dc.zip |
3.1
Diffstat (limited to 'library/errorLogging.h')
-rw-r--r-- | library/errorLogging.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/library/errorLogging.h b/library/errorLogging.h index 7b2b32c1..24b4a992 100644 --- a/library/errorLogging.h +++ b/library/errorLogging.h @@ -13,16 +13,17 @@ class ErrorLogging public: ErrorLogging() : errorCount(0) {} - void logError(const wxString& errorMessage); - void logWarning(const wxString& warningMessage); - void logInfo(const wxString& infoMessage); + void logInfo( const wxString& infoMessage); + void logWarning( const wxString& warningMessage); + void logError( const wxString& errorMessage); + void logFatalError(const wxString& errorMessage); int errorsTotal() { return errorCount; } - const std::vector<wxString>& getFormattedMessages() + const std::vector<wxString>& getFormattedMessages() const { return formattedMessages; } |