summaryrefslogtreecommitdiff
path: root/src/SMAPI/Program.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-08-09 16:32:00 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-08-09 16:32:00 -0400
commit9488d6482b03aa2227318f0028d10a44849367f6 (patch)
treedcb1795b083760855a8b6c7afc647f7bd864fdd5 /src/SMAPI/Program.cs
parent03e679d66cc7439b0218c95cbead925786e37e86 (diff)
downloadSMAPI-9488d6482b03aa2227318f0028d10a44849367f6.tar.gz
SMAPI-9488d6482b03aa2227318f0028d10a44849367f6.tar.bz2
SMAPI-9488d6482b03aa2227318f0028d10a44849367f6.zip
fix some log files not deleted on startup
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r--src/SMAPI/Program.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs
index 999aa23c..5d8b267f 100644
--- a/src/SMAPI/Program.cs
+++ b/src/SMAPI/Program.cs
@@ -435,7 +435,7 @@ namespace StardewModdingAPI
ModFolderPath = Constants.ModPath,
Mods = mods
};
- this.Toolkit.JsonHelper.WriteJsonFile(Path.Combine(Constants.LogDir, $"{Constants.LogNamePrefix}.metadata-dump.json"), export);
+ this.Toolkit.JsonHelper.WriteJsonFile(Path.Combine(Constants.LogDir, $"{Constants.LogNamePrefix}metadata-dump.json"), export);
}
// check for updates
@@ -1060,7 +1060,6 @@ namespace StardewModdingAPI
yield return "uses the 'dynamic' keyword. This won't work on Linux/Mac.";
if (mask.HasFlag(ModWarning.NoUpdateKeys))
yield return "has no update keys in its manifest. SMAPI won't show update alerts for this mod.";
-
}
/// <summary>Load a mod's entry class.</summary>
@@ -1257,7 +1256,7 @@ namespace StardewModdingAPI
{
// default path
{
- FileInfo defaultFile = new FileInfo(Path.Combine(Constants.LogDir, $"{Constants.LogNamePrefix}.{Constants.LogNameExtension}"));
+ FileInfo defaultFile = new FileInfo(Path.Combine(Constants.LogDir, $"{Constants.LogFilename}.{Constants.LogExtension}"));
if (!defaultFile.Exists)
return defaultFile.FullName;
}
@@ -1265,7 +1264,7 @@ namespace StardewModdingAPI
// get first disambiguated path
for (int i = 2; i < int.MaxValue; i++)
{
- FileInfo file = new FileInfo(Path.Combine(Constants.LogDir, $"{Constants.LogNamePrefix}.player-{i}.{Constants.LogNameExtension}"));
+ FileInfo file = new FileInfo(Path.Combine(Constants.LogDir, $"{Constants.LogFilename}.player-{i}.{Constants.LogExtension}"));
if (!file.Exists)
return file.FullName;
}