diff options
| author | 2021-01-03 19:53:23 +0000 | |
|---|---|---|
| committer | 2021-01-04 04:33:34 +0100 | |
| commit | fd5776aac21cee4ca8386c81d7d85d0a3c340fe8 (patch) | |
| tree | 83564958799140956d357f2184ca92c4d6ad1872 /src/common/logging/backend.cpp | |
| parent | Fix the old log file to work with the log parser. (diff) | |
| download | yuzu-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.cpp | 3 |
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 | ||
| 148 | FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { | 148 | FileBackend::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 | } |