diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-12-21 20:33:08 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-12-21 20:33:08 -0500 |
commit | 52f4df3f301ecde85a76e10ea9ddd607ab7a1b79 (patch) | |
tree | 5fb481d93ea0aae442ac655c96c1044825c1a475 /src/SMAPI/Framework/Logging/LogManager.cs | |
parent | 0d7d4476004d33b395d6df81386e4159d8898027 (diff) | |
download | SMAPI-52f4df3f301ecde85a76e10ea9ddd607ab7a1b79.tar.gz SMAPI-52f4df3f301ecde85a76e10ea9ddd607ab7a1b79.tar.bz2 SMAPI-52f4df3f301ecde85a76e10ea9ddd607ab7a1b79.zip |
add new game build number to the SMAPI log
Diffstat (limited to 'src/SMAPI/Framework/Logging/LogManager.cs')
-rw-r--r-- | src/SMAPI/Framework/Logging/LogManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Logging/LogManager.cs b/src/SMAPI/Framework/Logging/LogManager.cs index ef89c751..90433c37 100644 --- a/src/SMAPI/Framework/Logging/LogManager.cs +++ b/src/SMAPI/Framework/Logging/LogManager.cs @@ -262,7 +262,7 @@ namespace StardewModdingAPI.Framework.Logging public void LogIntro(string modsPath, IDictionary<string, object> customSettings) { // log platform - this.Monitor.Log($"SMAPI {Constants.ApiVersion} with Stardew Valley {Constants.GameVersion} on {EnvironmentUtility.GetFriendlyPlatformName(Constants.Platform)}", LogLevel.Info); + this.Monitor.Log($"SMAPI {Constants.ApiVersion} with Stardew Valley {Constants.GameVersion} (build {Constants.GetBuildVersionLabel()}) on {EnvironmentUtility.GetFriendlyPlatformName(Constants.Platform)}", LogLevel.Info); // log basic info this.Monitor.Log($"Mods go here: {modsPath}", LogLevel.Info); |