From b1833d09a5b921a3b8a8c4214f538e316d00e604 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 29 Apr 2018 17:34:42 -0400 Subject: log trace message if all mods are up-to-date Otherwise it's not apparently whether all mods are up-to-date, or it's still waiting for a server response. --- src/SMAPI/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SMAPI/Program.cs b/src/SMAPI/Program.cs index eaeb5f1d..acff0545 100644 --- a/src/SMAPI/Program.cs +++ b/src/SMAPI/Program.cs @@ -646,6 +646,8 @@ namespace StardewModdingAPI foreach (var entry in updatesByMod.OrderBy(p => p.Key.DisplayName)) this.Monitor.Log($" {entry.Key.DisplayName} {entry.Value.Version}: {entry.Value.Url}", LogLevel.Alert); } + else + this.Monitor.Log(" All mods up to date.", LogLevel.Trace); } catch (Exception ex) { -- cgit