From 4f5cd4564236c0b7d52230c015c384c260ebbad1 Mon Sep 17 00:00:00 2001 From: Frog Date: Mon, 15 Jun 2026 03:01:57 -0700 Subject: [PATCH] Cleanup Cream-Steam.log - Ensure we cleanup Cream-Steam.log --- CreamInstaller/Utility/ProgramData.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CreamInstaller/Utility/ProgramData.cs b/CreamInstaller/Utility/ProgramData.cs index a1b4f9a..50da3f1 100644 --- a/CreamInstaller/Utility/ProgramData.cs +++ b/CreamInstaller/Utility/ProgramData.cs @@ -151,6 +151,15 @@ internal static event Action OnLogError; { // ignored } + try + { + if (File.Exists(SteamLogPath)) + File.Delete(SteamLogPath); + } + catch + { + // ignored + } } internal static async Task Setup(Form form = null)