summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--release-notes.md1
-rw-r--r--src/StardewModdingAPI/Program.cs1
2 files changed, 2 insertions, 0 deletions
diff --git a/release-notes.md b/release-notes.md
index e5721fd9..7b8c83e3 100644
--- a/release-notes.md
+++ b/release-notes.md
@@ -32,6 +32,7 @@ For players:
For modders:
* Fixed edge cases in `SDate.AddDays(…)` calculations.
+* Added UTC timestamp to logs.
## 1.15.3
For players:
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