fix: don't always override logPath in release mode

This commit is contained in:
goat 2023-06-19 19:57:15 +02:00
parent 2e380b10d5
commit 10276a651d
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -373,7 +373,7 @@ namespace Dalamud.Injector
#if DEBUG #if DEBUG
startInfo.LogPath ??= startInfo.WorkingDirectory; startInfo.LogPath ??= startInfo.WorkingDirectory;
#else #else
startInfo.LogPath = xivlauncherDir; startInfo.LogPath ??= xivlauncherDir;
#endif #endif
// Set boot defaults // Set boot defaults