From beb951770a920fce5d993c024402146aa0c92c34 Mon Sep 17 00:00:00 2001 From: FearlessTobi Date: Mon, 4 Jan 2021 04:36:50 +0100 Subject: Address review comments --- src/common/logging/backend.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/common/logging') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index bec931ceb..2d4d2e9e7 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -146,16 +146,16 @@ void ColorConsoleBackend::Write(const Entry& entry) { } FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { - if (FileUtil::Exists(filename + ".old.txt")) { - FileUtil::Delete(filename + ".old.txt"); + if (Common::FS::Exists(filename + ".old.txt")) { + Common::FS::Delete(filename + ".old.txt"); } - if (FileUtil::Exists(filename)) { - FileUtil::Rename(filename, filename + ".old.txt"); + if (Common::FS::Exists(filename)) { + Common::FS::Rename(filename, filename + ".old.txt"); } // _SH_DENYWR allows read only access to the file for other programs. // It is #defined to 0 on other platforms - file = FileUtil::IOFile(filename, "w", _SH_DENYWR); + file = Common::FS::IOFile(filename, "w", _SH_DENYWR); } void FileBackend::Write(const Entry& entry) { -- cgit v1.2.3