Skip to content

Commit

Permalink
Added additional logging to environment details
Browse files Browse the repository at this point in the history
  • Loading branch information
Piranha91 committed Aug 1, 2024
1 parent 16d9ccd commit 0c99870
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions SynthEBD/PatcherState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public string GetStateLogStr()
sb.AppendLine("Apply Height: " + GeneralSettings.bChangeHeight);
sb.AppendLine("Apply Head Parts: " + GeneralSettings.bChangeHeadParts);
sb.AppendLine("Use Consistency: " + GeneralSettings.bEnableConsistency);
sb.AppendLine("Output Folder: " + GeneralSettings.OutputDataFolder);
sb.AppendLine("Output File Name: " + GeneralSettings.PatchFileName);
}
if (TexMeshSettings == null)
{
Expand Down Expand Up @@ -86,15 +88,15 @@ public string GetStateLogStr()
{
if (System.IO.File.Exists(ModManagerSettings.MO2Settings.ExecutablePath))
{
sb.AppendLine("MO2 Path exists");
sb.AppendLine("MO2 Path exists: " + ModManagerSettings.MO2Settings.ExecutablePath);
}
else
{
sb.AppendLine("MO2 Path does not exist");
}
if (System.IO.Directory.Exists(ModManagerSettings.MO2Settings.ModFolderPath))
{
sb.AppendLine("Mod Folder exists");
sb.AppendLine("Mod Folder exists: " + ModManagerSettings.MO2Settings.ModFolderPath);
}
else
{
Expand Down

0 comments on commit 0c99870

Please sign in to comment.