Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SS14.Launcher/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down
5 changes: 5 additions & 0 deletions SS14.Launcher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ public static void Main(string[] args)
{
BuildAvaloniaApp(cfg).StartWithClassicDesktopLifetime(args);
}
catch (Exception ex)
{
Log.Error(ex, "Launcher crashed with unhandled exception(s).");
throw;
}
finally
{
Log.CloseAndFlush();
Expand Down
Loading