diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-29 17:34:42 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-29 17:34:42 -0400 |
commit | b1833d09a5b921a3b8a8c4214f538e316d00e604 (patch) | |
tree | 8dda357b253f7ffe7a9df447df6181e3a184b90a | |
parent | 89e2b76a5aa545331c6e8dd708015e2dc6e5dfe6 (diff) | |
download | SMAPI-b1833d09a5b921a3b8a8c4214f538e316d00e604.tar.gz SMAPI-b1833d09a5b921a3b8a8c4214f538e316d00e604.tar.bz2 SMAPI-b1833d09a5b921a3b8a8c4214f538e316d00e604.zip |
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.
-rw-r--r-- | src/SMAPI/Program.cs | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |