add operating system to initial console output to simplify troubleshooting

This commit is contained in:
Jesse Plamondon-Willard 2016-11-03 00:25:40 -04:00
parent ab3508af6f
commit a793c84851
1 changed files with 5 additions and 5 deletions

View File

@ -52,11 +52,11 @@ namespace StardewModdingAPI
try
{
Log.AsyncY("SDV Version: " + Game1.version);
Log.AsyncY("SMAPI Version: " + Constants.Version);
ConfigureUI();
CreateDirectories();
StartGame();
Log.AsyncY($"SMAPI {Constants.Version}");
Log.AsyncY($"Stardew Valley {Game1.version} on {Environment.OSVersion}");
Program.ConfigureUI();
Program.CreateDirectories();
Program.StartGame();
}
catch (Exception e)
{