0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-12 17:30:44 -05:00

Fixed incorrectly named log file

This commit is contained in:
Dev 2024-10-31 23:27:36 +00:00
parent 28e8378787
commit b3c5063050

View File

@ -18,7 +18,7 @@ public partial class App : Application
{ {
public static string LogPath = Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "spt-installer", "spt-installer.log"); public static string LogPath = Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "spt-installer", "spt-installer.log");
public static string LogDebugPath = Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), public static string LogDebugPath = Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
"spt-installer", "spt-isntaller-debug.log"); "spt-installer", "spt-installer-debug.log");
public static void ReLaunch(bool debug, string installPath = "") public static void ReLaunch(bool debug, string installPath = "")
{ {