diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 4eab33476..b708db793 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -146,7 +146,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.