mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
Delete the old log file before rotating (#5675)
This commit is contained in:
parent
755393da90
commit
c1d7ba4d60
@ -145,6 +145,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");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user