diff options
author | CJB <cjbok@ziggo.nl> | 2016-03-31 22:47:19 +0200 |
---|---|---|
committer | CJB <cjbok@ziggo.nl> | 2016-03-31 22:47:19 +0200 |
commit | a879733ed04ca346abd025202d833c263c4b529a (patch) | |
tree | ccd9e8d5bfe8d965d14be8803ab2e74d864081e2 | |
parent | eda32ed5580c2f7e27214a312b747492d7394875 (diff) | |
download | SMAPI-a879733ed04ca346abd025202d833c263c4b529a.tar.gz SMAPI-a879733ed04ca346abd025202d833c263c4b529a.tar.bz2 SMAPI-a879733ed04ca346abd025202d833c263c4b529a.zip |
Added SDV and SMAPI version information at beginning of logfile.
-rw-r--r-- | StardewModdingAPI/Program.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/StardewModdingAPI/Program.cs b/StardewModdingAPI/Program.cs index fcc247e2..9097e285 100644 --- a/StardewModdingAPI/Program.cs +++ b/StardewModdingAPI/Program.cs @@ -50,6 +50,8 @@ namespace StardewModdingAPI try
{
+ Log.AsyncY("SDV Version: " + Game1.version);
+ Log.AsyncY("SMAPI Version: " + Constants.Version.VersionString);
ConfigureUI();
ConfigurePaths();
ConfigureSDV();
|