summaryrefslogtreecommitdiff
path: root/zen/error_log.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-07-22 16:56:03 +0000
committerB Stack <bgstack15@gmail.com>2020-07-22 16:56:03 +0000
commite5633fb1c0db91f01ab967330b76baf4ecdb0512 (patch)
tree10260e25ae905564f7978b83fc4e316670f987c6 /zen/error_log.h
parentMerge branch '10.25' into 'master' (diff)
parentadd upstream 11.0 (diff)
downloadFreeFileSync-e5633fb1c0db91f01ab967330b76baf4ecdb0512.tar.gz
FreeFileSync-e5633fb1c0db91f01ab967330b76baf4ecdb0512.tar.bz2
FreeFileSync-e5633fb1c0db91f01ab967330b76baf4ecdb0512.zip
Merge branch '11.0' into 'master'11.0
add upstream 11.0 See merge request opensource-tracking/FreeFileSync!24
Diffstat (limited to 'zen/error_log.h')
-rw-r--r--zen/error_log.h17
1 files changed, 5 insertions, 12 deletions
diff --git a/zen/error_log.h b/zen/error_log.h
index ab23e33a..8604f127 100644
--- a/zen/error_log.h
+++ b/zen/error_log.h
@@ -19,16 +19,15 @@ namespace zen
{
enum MessageType
{
- MSG_TYPE_INFO = 0x1,
- MSG_TYPE_WARNING = 0x2,
- MSG_TYPE_ERROR = 0x4,
- MSG_TYPE_FATAL_ERROR = 0x8,
+ MSG_TYPE_INFO = 0x1,
+ MSG_TYPE_WARNING = 0x2,
+ MSG_TYPE_ERROR = 0x4,
};
struct LogEntry
{
time_t time = 0;
- MessageType type = MSG_TYPE_FATAL_ERROR;
+ MessageType type = MSG_TYPE_ERROR;
Zstringc message; //conserve memory (=> avoid std::string SSO overhead!)
};
@@ -45,7 +44,6 @@ public:
int info = 0;
int warning = 0;
int error = 0;
- int fatal = 0;
};
Stats getStats() const;
@@ -91,11 +89,8 @@ ErrorLog::Stats ErrorLog::getStats() const
case MSG_TYPE_ERROR:
++count.error;
break;
- case MSG_TYPE_FATAL_ERROR:
- ++count.fatal;
- break;
}
- assert(static_cast<int>(entries_.size()) == count.info + count.warning + count.error + count.fatal);
+ assert(static_cast<int>(entries_.size()) == count.info + count.warning + count.error);
return count;
}
@@ -111,8 +106,6 @@ std::wstring getMessageTypeLabel(MessageType type)
return _("Warning");
case MSG_TYPE_ERROR:
return _("Error");
- case MSG_TYPE_FATAL_ERROR:
- return _("Serious Error");
}
assert(false);
return std::wstring();
bgstack15