mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-17 18:56:41 +00:00
Limit log file size
This commit is contained in:
parent
c41fddd25e
commit
7a7eba6254
1 changed files with 10 additions and 2 deletions
|
@ -10,6 +10,8 @@ namespace Ryujinx.Common.Logging.Targets
|
|||
private readonly StreamWriter _logWriter;
|
||||
private readonly ILogFormatter _formatter;
|
||||
private readonly string _name;
|
||||
private ulong _logLength = 0;
|
||||
private static readonly ulong _maxLogCharacterLength = 500000000;
|
||||
|
||||
string ILogTarget.Name { get => _name; }
|
||||
|
||||
|
@ -93,8 +95,14 @@ namespace Ryujinx.Common.Logging.Targets
|
|||
|
||||
public void Log(object sender, LogEventArgs args)
|
||||
{
|
||||
_logWriter.WriteLine(_formatter.Format(args));
|
||||
_logWriter.Flush();
|
||||
string toWrite = _formatter.Format(args);
|
||||
_logLength += (ulong)toWrite.Length;
|
||||
if (_logLength <= _maxLogCharacterLength)
|
||||
{
|
||||
_logWriter.WriteLine(toWrite);
|
||||
_logWriter.Flush();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
|
|
Loading…
Reference in a new issue