bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
12 additions and
4 deletions
-
src/common/logging/backend.cpp
|
|
@ -145,10 +145,18 @@ void ColorConsoleBackend::Write(const Entry& entry) { |
|
|
PrintColoredMessage(entry); |
|
|
PrintColoredMessage(entry); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// _SH_DENYWR allows read only access to the file for other programs.
|
|
|
|
|
|
// It is #defined to 0 on other platforms
|
|
|
|
|
|
FileBackend::FileBackend(const std::string& filename) |
|
|
|
|
|
: file(filename, "w", _SH_DENYWR), bytes_written(0) {} |
|
|
|
|
|
|
|
|
FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { |
|
|
|
|
|
if (Common::FS::Exists(filename + ".old.txt")) { |
|
|
|
|
|
Common::FS::Delete(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 = Common::FS::IOFile(filename, "w", _SH_DENYWR); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
void FileBackend::Write(const Entry& entry) { |
|
|
void FileBackend::Write(const Entry& entry) { |
|
|
// prevent logs from going over the maximum size (in case its spamming and the user doesn't
|
|
|
// prevent logs from going over the maximum size (in case its spamming and the user doesn't
|
|
|
|