From 10276a651d3806f51e6c1abecc88abb3f449c08f Mon Sep 17 00:00:00 2001 From: goat Date: Mon, 19 Jun 2023 19:57:15 +0200 Subject: [PATCH] fix: don't always override logPath in release mode --- Dalamud.Injector/EntryPoint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud.Injector/EntryPoint.cs b/Dalamud.Injector/EntryPoint.cs index ea0d1fadc..244b8e3a7 100644 --- a/Dalamud.Injector/EntryPoint.cs +++ b/Dalamud.Injector/EntryPoint.cs @@ -373,7 +373,7 @@ namespace Dalamud.Injector #if DEBUG startInfo.LogPath ??= startInfo.WorkingDirectory; #else - startInfo.LogPath = xivlauncherDir; + startInfo.LogPath ??= xivlauncherDir; #endif // Set boot defaults