Skip to content

Commit

Permalink
Rotate previous log file to '.old' if it exists
Browse files Browse the repository at this point in the history
  • Loading branch information
xperia64 committed Dec 31, 2020
1 parent e6ef00b commit b4a6763
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/common/logging/backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,15 @@ void ColorConsoleBackend::Write(const Entry& entry) {
PrintColoredMessage(entry);
}

// _SH_DENYWR allows read only access to the file for other programs.
// It is #defined to 0 on other platforms
FileBackend::FileBackend(const std::string& filename)
: file(filename, "w", _SH_DENYWR), bytes_written(0) {}
FileBackend::FileBackend(const std::string& filename) : bytes_written(0) {
if (FileUtil::Exists(filename)) {
FileUtil::Rename(filename, filename + ".old");
}

// _SH_DENYWR allows read only access to the file for other programs.
// It is #defined to 0 on other platforms
file = FileUtil::IOFile(filename, "w", _SH_DENYWR);
}

void FileBackend::Write(const Entry& entry) {
// prevent logs from going over the maximum size (in case its spamming and the user doesn't
Expand Down

0 comments on commit b4a6763

Please sign in to comment.