mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Rotate previous log file to '.old' if it exists
This commit is contained in:
		
							parent
							
								
									e6ef00b41d
								
							
						
					
					
						commit
						b4a6763484
					
				
					 1 changed files with 9 additions and 4 deletions
				
			
		|  | @ -144,10 +144,15 @@ void ColorConsoleBackend::Write(const Entry& entry) { | |||
|     PrintColoredMessage(entry); | ||||
| } | ||||
| 
 | ||||
| FileBackend::FileBackend(const std::string& filename) : bytes_written(0) { | ||||
|     if (FileUtil::Exists(filename)) { | ||||
|         FileUtil::Rename(filename, filename + ".old"); | ||||
|     } | ||||
| 
 | ||||
|     // _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) {} | ||||
|     file = FileUtil::IOFile(filename, "w", _SH_DENYWR); | ||||
| } | ||||
| 
 | ||||
| void FileBackend::Write(const Entry& entry) { | ||||
|     // prevent logs from going over the maximum size (in case its spamming and the user doesn't
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue