summaryrefslogtreecommitdiffstats
path: root/src/common/logging
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2021-01-04 04:36:50 +0100
committerFearlessTobi <thm.frey@gmail.com>2021-01-04 04:36:50 +0100
commitbeb951770a920fce5d993c024402146aa0c92c34 (patch)
tree74605a66aa402bd4d7298d18080cc55cd09a8168 /src/common/logging
parentDelete the old log file before rotating (#5675) (diff)
downloadyuzu-beb951770a920fce5d993c024402146aa0c92c34.tar
yuzu-beb951770a920fce5d993c024402146aa0c92c34.tar.gz
yuzu-beb951770a920fce5d993c024402146aa0c92c34.tar.bz2
yuzu-beb951770a920fce5d993c024402146aa0c92c34.tar.lz
yuzu-beb951770a920fce5d993c024402146aa0c92c34.tar.xz
yuzu-beb951770a920fce5d993c024402146aa0c92c34.tar.zst
yuzu-beb951770a920fce5d993c024402146aa0c92c34.zip
Diffstat (limited to 'src/common/logging')
-rw-r--r--src/common/logging/backend.cpp10
1 files changed, 5 insertions, 5 deletions
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) {