فهرست منبع

Delete the old log file before rotating (#5675)

xperia64 5 سال پیش
والد
کامیت
fd5776aac2
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      src/common/logging/backend.cpp

+ 3 - 0
src/common/logging/backend.cpp

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