Explorar o código

Fix the old log file to work with the log parser.

bunnei %!s(int64=5) %!d(string=hai) anos
pai
achega
bf8bd60ab3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/common/logging/backend.cpp

+ 1 - 1
src/common/logging/backend.cpp

@@ -147,7 +147,7 @@ void ColorConsoleBackend::Write(const Entry& entry) {
 
 FileBackend::FileBackend(const std::string& filename) : bytes_written(0) {
     if (FileUtil::Exists(filename)) {
-        FileUtil::Rename(filename, filename + ".old");
+        FileUtil::Rename(filename, filename + ".old.txt");
     }
 
     // _SH_DENYWR allows read only access to the file for other programs.