Browse Source

Delete the old log file before rotating (#5675)

nce_cpp
xperia64 5 years ago
committed by FearlessTobi
parent
commit
34bacedd1a
  1. 3
      src/common/logging/backend.cpp

3
src/common/logging/backend.cpp

@ -146,6 +146,9 @@ void ColorConsoleBackend::Write(const Entry& entry) {
}
FileBackend::FileBackend(const std::string& filename) : bytes_written(0) {
if (FileUtil::Exists(filename + ".old.txt")) {
FileUtil::Delete(filename + ".old.txt");
}
if (FileUtil::Exists(filename)) {
FileUtil::Rename(filename, filename + ".old.txt");
}

Loading…
Cancel
Save