diff options
Diffstat (limited to 'src/common/logging/backend.cpp')
| -rw-r--r-- | src/common/logging/backend.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 7c9da6895..bec931ceb 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -146,6 +146,9 @@ void ColorConsoleBackend::Write(const Entry& entry) { | |||
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { | 148 | FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { |
| 149 | if (FileUtil::Exists(filename + ".old.txt")) { | ||
| 150 | FileUtil::Delete(filename + ".old.txt"); | ||
| 151 | } | ||
| 149 | if (FileUtil::Exists(filename)) { | 152 | if (FileUtil::Exists(filename)) { |
| 150 | FileUtil::Rename(filename, filename + ".old.txt"); | 153 | FileUtil::Rename(filename, filename + ".old.txt"); |
| 151 | } | 154 | } |