diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-08 00:17:00 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-08 00:17:00 -0500 |
commit | d52b3572f3d80c232c80de44adc93cc6cb015812 (patch) | |
tree | 82a62b66542d765be8402b7b448cda88cfac19c0 /src/StardewModdingAPI/Constants.cs | |
parent | 366769e8a27e8de39842c82907cf40451c488a2c (diff) | |
download | SMAPI-d52b3572f3d80c232c80de44adc93cc6cb015812.tar.gz SMAPI-d52b3572f3d80c232c80de44adc93cc6cb015812.tar.bz2 SMAPI-d52b3572f3d80c232c80de44adc93cc6cb015812.zip |
simplify log filename
Diffstat (limited to 'src/StardewModdingAPI/Constants.cs')
-rw-r--r-- | src/StardewModdingAPI/Constants.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StardewModdingAPI/Constants.cs b/src/StardewModdingAPI/Constants.cs index d3c2ddcc..7b4d8f40 100644 --- a/src/StardewModdingAPI/Constants.cs +++ b/src/StardewModdingAPI/Constants.cs @@ -61,8 +61,8 @@ namespace StardewModdingAPI /// <summary>The directory path in which error logs should be stored.</summary> public static string LogDir => Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "StardewValley", "ErrorLogs"); - /// <summary>The file path to the error log where the latest output should be saved.</summary> - public static string LogPath => Path.Combine(Constants.LogDir, "MODDED_ProgramLog.Log_LATEST.txt"); + /// <summary>The file path to the log where the latest output should be saved.</summary> + public static string LogPath => Path.Combine(Constants.LogDir, "SMAPI-latest.txt"); /// <summary>The file path for the SMAPI configuration file.</summary> internal static string ApiConfigPath => Path.Combine(Constants.ExecutionPath, $"{typeof(Program).Assembly.GetName().Name}.config.json"); |