diff --git a/src/XIVLauncher.Core/Program.cs b/src/XIVLauncher.Core/Program.cs index 89b99cb1..fb43c617 100644 --- a/src/XIVLauncher.Core/Program.cs +++ b/src/XIVLauncher.Core/Program.cs @@ -117,8 +117,8 @@ private static void LoadConfig(Storage storage) Config.WineDebugVars ??= "-all"; } - public const uint STEAM_APP_ID = 39210; // FFXIV Retail Steam AppId - public const uint STEAM_APP_ID_FT = 312060; // FFXIV Free Trial Steam AppId + public const uint STEAM_APP_ID = 39210; + public const uint STEAM_APP_ID_FT = 312060; private static void Main(string[] args) { @@ -130,7 +130,6 @@ private static void Main(string[] args) Loc.SetupWithFallbacks(); - // uint appId, altId; string appName, altName; if (Config.IsFt.Value) @@ -170,14 +169,14 @@ private static void Main(string[] args) } catch (Exception ex) { - Log.Error($"Couldn't init Steam with AppId={appId} ({appName}), trying AppId={altId} ({altName})"); + Log.Error(ex, $"Couldn't init Steam with AppId={appId} ({appName}), trying AppId={altId} ({altName})"); Steam.Initialize(altId); } } } catch (Exception ex) { - Log.Error(ex, "Steam couldn't load."); + Log.Error(ex, "Steam couldn't load"); } DalamudLoadInfo = new DalamudOverlayInfoProxy();