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

master
bunnei 2021-01-01 03:17:20 +07:00 committed by FearlessTobi
parent f478a57737
commit bf8bd60ab3
1 changed files with 1 additions and 1 deletions

@ -147,7 +147,7 @@ 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)) { 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. // _SH_DENYWR allows read only access to the file for other programs.