diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-08 00:22:27 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-08 00:22:27 -0500 |
commit | 6092f9ea00f63980231a646696671ae9db3fa958 (patch) | |
tree | 7d716bc845c1a997b28ce2063070b4efea9a7b43 | |
parent | d52b3572f3d80c232c80de44adc93cc6cb015812 (diff) | |
download | SMAPI-6092f9ea00f63980231a646696671ae9db3fa958.tar.gz SMAPI-6092f9ea00f63980231a646696671ae9db3fa958.tar.bz2 SMAPI-6092f9ea00f63980231a646696671ae9db3fa958.zip |
always use \r\n line endings in log file for crossplatform compatibility (#230)
-rw-r--r-- | release-notes.md | 1 | ||||
-rw-r--r-- | src/StardewModdingAPI/Framework/LogFileManager.cs | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/release-notes.md b/release-notes.md index 9b6bd4fb..47902e22 100644 --- a/release-notes.md +++ b/release-notes.md @@ -12,6 +12,7 @@ For mod developers: * Added `GetPrivateProperty` to reflection helper. * Many deprecated APIs have been removed; see the [deprecation guide](http://canimod.com/guides/updating-a-smapi-mod) for more information. +* Log files now always use `\r\n` to simplify crossplatform viewing. ## 1.8 See [log](https://github.com/Pathoschild/SMAPI/compare/1.7...1.8). diff --git a/src/StardewModdingAPI/Framework/LogFileManager.cs b/src/StardewModdingAPI/Framework/LogFileManager.cs index c2a2105b..80437e9c 100644 --- a/src/StardewModdingAPI/Framework/LogFileManager.cs +++ b/src/StardewModdingAPI/Framework/LogFileManager.cs @@ -34,7 +34,9 @@ namespace StardewModdingAPI.Framework /// <param name="message">The message to log.</param> public void WriteLine(string message) { - this.Stream.WriteLine(message); + // always use Windows-style line endings for convenience + // (Linux/Mac editors are fine with them, Windows editors often require them) + this.Stream.Write(message + "\r\n"); } /// <summary>Release all resources.</summary> |