add UTC timestamp to logs
This commit is contained in:
parent
b2b3df08bc
commit
c994747e51
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue