From 1e58cbc75b53ad9288f914d15a041196f63e8779 Mon Sep 17 00:00:00 2001 From: Kyle Tyo Date: Thu, 9 Jul 2026 13:30:12 -0400 Subject: [PATCH 1/2] commit --- SS14.Launcher/App.xaml.cs | 2 +- SS14.Launcher/Program.cs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/SS14.Launcher/App.xaml.cs b/SS14.Launcher/App.xaml.cs index cf9e3570..214def36 100644 --- a/SS14.Launcher/App.xaml.cs +++ b/SS14.Launcher/App.xaml.cs @@ -155,7 +155,7 @@ private void OnStartup(object? s, ControlledApplicationLifetimeStartupEventArgs if (ConfigConstants.IsAuthOverride) { - Log.Information("Auth URL override detected: {AuthUrl}.", ConfigConstants.AuthUrl); + Log.Information("Auth URL override detected: {AuthUrl}.", ConfigConstants.AuthUrl.Urls); viewModel.ShouldShowAuthOverrideWarning = true; viewModel.StartAuthOverrideCountdown(); } diff --git a/SS14.Launcher/Program.cs b/SS14.Launcher/Program.cs index 7fdbbcfb..3b38fab8 100644 --- a/SS14.Launcher/Program.cs +++ b/SS14.Launcher/Program.cs @@ -119,6 +119,10 @@ public static void Main(string[] args) { BuildAvaloniaApp(cfg).StartWithClassicDesktopLifetime(args); } + catch (Exception ex) + { + Log.Error(ex, "Launcher crashed with unhandled exception(s)."); + } finally { Log.CloseAndFlush(); From d7d8d5e969f5d89456aaaca55ee64c467b1da894 Mon Sep 17 00:00:00 2001 From: Kyle Tyo Date: Thu, 9 Jul 2026 13:37:34 -0400 Subject: [PATCH 2/2] Update Program.cs --- SS14.Launcher/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SS14.Launcher/Program.cs b/SS14.Launcher/Program.cs index 3b38fab8..4bbaed75 100644 --- a/SS14.Launcher/Program.cs +++ b/SS14.Launcher/Program.cs @@ -122,6 +122,7 @@ public static void Main(string[] args) catch (Exception ex) { Log.Error(ex, "Launcher crashed with unhandled exception(s)."); + throw; } finally {