aboutsummaryrefslogtreecommitdiff
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-01-01 03:17:20 -0800
committerFearlessTobi <thm.frey@gmail.com>2021-01-03 01:44:52 +0100
commitbf8bd60ab3da6db1bab4fe3bf3f0e9f66e95fb05 (patch)
tree9f24feaa00d384db7393a309342d31d3299a3b06 /src/common/logging/backend.cpp
parentf478a5773763a6d91f9263277ac394a7a9faaba3 (diff)
Fix the old log file to work with the log parser.
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r--src/common/logging/backend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index ebc807e00d..7c9da6895b 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -147,7 +147,7 @@ void ColorConsoleBackend::Write(const Entry& entry) {
FileBackend::FileBackend(const std::string& filename) : bytes_written(0) {
if (FileUtil::Exists(filename)) {
- FileUtil::Rename(filename, filename + ".old");
+ FileUtil::Rename(filename, filename + ".old.txt");
}
// _SH_DENYWR allows read only access to the file for other programs.