summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorGravatar xperia642021-01-03 19:53:23 +0000
committerGravatar FearlessTobi2021-01-04 04:33:34 +0100
commitfd5776aac21cee4ca8386c81d7d85d0a3c340fe8 (patch)
tree83564958799140956d357f2184ca92c4d6ad1872 /src/common/logging/backend.cpp
parentFix the old log file to work with the log parser. (diff)
downloadyuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar.gz
yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.tar.xz
yuzu-fd5776aac21cee4ca8386c81d7d85d0a3c340fe8.zip
Delete the old log file before rotating (#5675)
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r--src/common/logging/backend.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 7c9da6895..bec931ceb 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -146,6 +146,9 @@ void ColorConsoleBackend::Write(const Entry& entry) {
146} 146}
147 147
148FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { 148FileBackend::FileBackend(const std::string& filename) : bytes_written(0) {
149 if (FileUtil::Exists(filename + ".old.txt")) {
150 FileUtil::Delete(filename + ".old.txt");
151 }
149 if (FileUtil::Exists(filename)) { 152 if (FileUtil::Exists(filename)) {
150 FileUtil::Rename(filename, filename + ".old.txt"); 153 FileUtil::Rename(filename, filename + ".old.txt");
151 } 154 }