diff options
| author | 2021-01-01 03:17:20 -0800 | |
|---|---|---|
| committer | 2021-01-03 01:44:52 +0100 | |
| commit | bf8bd60ab3da6db1bab4fe3bf3f0e9f66e95fb05 (patch) | |
| tree | 9f24feaa00d384db7393a309342d31d3299a3b06 /src/common/logging/backend.cpp | |
| parent | Rotate previous log file to '.old' if it exists (diff) | |
| download | yuzu-bf8bd60ab3da6db1bab4fe3bf3f0e9f66e95fb05.tar.gz yuzu-bf8bd60ab3da6db1bab4fe3bf3f0e9f66e95fb05.tar.xz yuzu-bf8bd60ab3da6db1bab4fe3bf3f0e9f66e95fb05.zip | |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index ebc807e00..7c9da6895 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -147,7 +147,7 @@ void ColorConsoleBackend::Write(const Entry& entry) { | |||
| 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)) { | 149 | if (FileUtil::Exists(filename)) { |
| 150 | FileUtil::Rename(filename, filename + ".old"); | 150 | FileUtil::Rename(filename, filename + ".old.txt"); |
| 151 | } | 151 | } |
| 152 | 152 | ||
| 153 | // _SH_DENYWR allows read only access to the file for other programs. | 153 | // _SH_DENYWR allows read only access to the file for other programs. |