diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-06 23:22:11 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-06 23:22:11 -0400 |
commit | c994747e513f98eb5760a3a4dc9e063b16b1abc9 (patch) | |
tree | 8d4fd226ac799cb82d4fff9e4776f1db85067028 /src/StardewModdingAPI/Program.cs | |
parent | b2b3df08bcd2de9c9f9ca98f61a50f4c6d1fd6e5 (diff) | |
download | SMAPI-c994747e513f98eb5760a3a4dc9e063b16b1abc9.tar.gz SMAPI-c994747e513f98eb5760a3a4dc9e063b16b1abc9.tar.bz2 SMAPI-c994747e513f98eb5760a3a4dc9e063b16b1abc9.zip |
add UTC timestamp to logs
Diffstat (limited to 'src/StardewModdingAPI/Program.cs')
-rw-r--r-- | src/StardewModdingAPI/Program.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs index 13d52f12..ad873598 100644 --- a/src/StardewModdingAPI/Program.cs +++ b/src/StardewModdingAPI/Program.cs @@ -128,6 +128,7 @@ namespace StardewModdingAPI // init logging this.Monitor.Log($"SMAPI {Constants.ApiVersion} with Stardew Valley {Constants.GameVersion} on {this.GetFriendlyPlatformName()}", LogLevel.Info); this.Monitor.Log($"Mods go here: {Constants.ModPath}"); + this.Monitor.Log($"Log started at {DateTime.UtcNow:s} UTC", LogLevel.Trace); #if SMAPI_1_x this.Monitor.Log("Preparing SMAPI..."); #endif |