summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/fatal_error.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/fatal_error.h')
-rw-r--r--FreeFileSync/Source/fatal_error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/fatal_error.h b/FreeFileSync/Source/fatal_error.h
index 84ceb6dc..476a8075 100644
--- a/FreeFileSync/Source/fatal_error.h
+++ b/FreeFileSync/Source/fatal_error.h
@@ -33,7 +33,7 @@ void logFatalError(const std::string& msg) //noexcept
using namespace zen;
assert(false); //this is stuff we like to debug
- const std::string logEntry = '[' + utfTo<std::string>(formatTime(formatDateTag) + Zstr(' ') + formatTime(formatTimeTag)) + "] " + msg;
+ const std::string logEntry = '[' + utfTo<std::string>(formatTime(formatDateTimeTag)) + "] " + msg;
try
{
saveBinContainer(getConfigDirPathPf() + Zstr("LastError.log"), logEntry, nullptr /*notifyUnbufferedIO*/); //throw FileError
bgstack15