diff --git a/src/UI/Panels/LogPanel.cs b/src/UI/Panels/LogPanel.cs index 9cc22e2..ee7b88c 100644 --- a/src/UI/Panels/LogPanel.cs +++ b/src/UI/Panels/LogPanel.cs @@ -61,8 +61,10 @@ namespace UnityExplorer.UI.Panels private void SetupIO() { + var fileName = $"UnityExplorer {DateTime.Now:u}.txt"; + fileName = IOUtility.EnsureValidFilename(fileName); var path = Path.Combine(ExplorerCore.Loader.ExplorerFolder, "Logs"); - //path = IOUtility.EnsureValidFilePath(path); + CurrentStreamPath = IOUtility.EnsureValidFilePath(Path.Combine(path, fileName)); // clean old log(s) var files = Directory.GetFiles(path); @@ -75,11 +77,6 @@ namespace UnityExplorer.UI.Panels File.Delete(files[i]); } - var fileName = $"UnityExplorer {DateTime.Now:u}.txt"; - fileName = IOUtility.EnsureValidFilename(fileName); - - CurrentStreamPath = IOUtility.EnsureValidFilePath(Path.Combine(path, fileName)); - File.WriteAllLines(CurrentStreamPath, Logs.Select(it => it.message).ToArray()); }