change 'starting game...' log level to Debug

This makes the message visible to players, to avoid confusion where SMAPI seems to be doing nothing (especially after a pre-load prompt).
This commit is contained in:
Jesse Plamondon-Willard 2018-06-03 13:05:23 -04:00
parent de74b038e4
commit 045891131c
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ namespace StardewModdingAPI
}
// start game
this.Monitor.Log("Starting game...", LogLevel.Trace);
this.Monitor.Log("Starting game...", LogLevel.Debug);
try
{
this.IsGameRunning = true;