Merge pull request #5666 from xperia64/log_rotate
Rotate previous log file to "citra_log.txt.old"
This commit is contained in:
commit
1265c37bab
|
@ -144,10 +144,15 @@ void ColorConsoleBackend::Write(const Entry& entry) {
|
||||||
PrintColoredMessage(entry);
|
PrintColoredMessage(entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
// _SH_DENYWR allows read only access to the file for other programs.
|
FileBackend::FileBackend(const std::string& filename) : bytes_written(0) {
|
||||||
// It is #defined to 0 on other platforms
|
if (FileUtil::Exists(filename)) {
|
||||||
FileBackend::FileBackend(const std::string& filename)
|
FileUtil::Rename(filename, filename + ".old");
|
||||||
: file(filename, "w", _SH_DENYWR), bytes_written(0) {}
|
}
|
||||||
|
|
||||||
|
// _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);
|
||||||
|
}
|
||||||
|
|
||||||
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
|
||||||
|
|
Reference in New Issue