Adjust logging and add debugger option
All checks were successful
Deploy to Gitea Releases / deploy-to-gitea-releases (push) Successful in 1m12s

This commit is contained in:
2026-01-27 19:59:51 -05:00
parent 13ae4c74bc
commit 2e14ff032b
6 changed files with 81 additions and 35 deletions

View File

@@ -30,11 +30,11 @@ internal static class UpdateCheck
if (MessageBox.Show(updateCheckMessage, updateCheckTitle, MessageBoxButton.YesNo, MessageBoxImage.Question) != MessageBoxResult.Yes)
return;
Log.Logger.Information("Downloading update");
Log.Information("Downloading update");
await UpdateManager.DownloadUpdatesAsync(newVersion);
Log.Logger.Information("Installing update");
Log.Information("Installing update");
UpdateManager.ApplyUpdatesAndRestart(newVersion);
}