summaryrefslogtreecommitdiff
path: root/src/SMAPI/Program.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-04-29 17:34:42 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-04-29 17:34:42 -0400
commitb1833d09a5b921a3b8a8c4214f538e316d00e604 (patch)
tree8dda357b253f7ffe7a9df447df6181e3a184b90a /src/SMAPI/Program.cs
parent89e2b76a5aa545331c6e8dd708015e2dc6e5dfe6 (diff)
downloadSMAPI-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.
Diffstat (limited to 'src/SMAPI/Program.cs')
-rw-r--r--src/SMAPI/Program.cs2
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)
{