From 045891131ccfdb980fcd84b3d3e52a2b2fcd94e2 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 3 Jun 2018 13:05:23 -0400 Subject: 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). --- src/SMAPI/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index b7b4dfc7..5c5137ef 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -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; -- cgit