mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix build issues
This commit is contained in:
@@ -113,7 +113,7 @@ namespace SabreTools.Logging
|
||||
Directory.CreateDirectory(LogDirectory);
|
||||
|
||||
FileStream logfile = File.Create(Path.Combine(LogDirectory, Filename));
|
||||
_log = new StreamWriter(logfile, Encoding.UTF8, (int)(4 * Constants.KibiByte), true)
|
||||
_log = new StreamWriter(logfile, Encoding.UTF8, 4096, true)
|
||||
{
|
||||
AutoFlush = true
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user