summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2016-11-19 00:10:16 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2016-11-19 00:10:16 -0500
commit5e9b030ec7b975a59a3bac2f64ab5a3631aed9fe (patch)
tree01d48f93c77d4e2c91932f8b2893dea858a85e12
parent6a48094995c0e9c47233ae5566c00a1aea3d164e (diff)
downloadSMAPI-5e9b030ec7b975a59a3bac2f64ab5a3631aed9fe.tar.gz
SMAPI-5e9b030ec7b975a59a3bac2f64ab5a3631aed9fe.tar.bz2
SMAPI-5e9b030ec7b975a59a3bac2f64ab5a3631aed9fe.zip
fix compatibility with mods using Log.Out
-rw-r--r--release-notes.md2
-rw-r--r--src/StardewModdingAPI/Log.cs8
2 files changed, 10 insertions, 0 deletions
diff --git a/release-notes.md b/release-notes.md
index 3450c16d..2a6506e5 100644
--- a/release-notes.md
+++ b/release-notes.md
@@ -6,6 +6,8 @@ See [log](https://github.com/CLxS/SMAPI/compare/1.1...master).
This is a patch release that addresses compatibility with older mods.
* Fixed deprecation warnings being repeated if the mod can't be identified.
+* Fixed compatibility with mods that use `Log.Out`.
+
## 1.1
See [log](https://github.com/CLxS/SMAPI/compare/1.0...1.1).
diff --git a/src/StardewModdingAPI/Log.cs b/src/StardewModdingAPI/Log.cs
index 02455f3a..3ab9fe78 100644
--- a/src/StardewModdingAPI/Log.cs
+++ b/src/StardewModdingAPI/Log.cs
@@ -155,6 +155,14 @@ namespace StardewModdingAPI
Log.Monitor.LegacyLog(Log.GetModName(), message?.ToString(), ConsoleColor.White, LogLevel.Info);
}
+ /// <summary>Asynchronously log an info message to the console.</summary>
+ /// <param name="message">The message to log.</param>
+ public static void Out(object message)
+ {
+ Log.WarnDeprecated();
+ Log.Async($"[OUT] {message}");
+ }
+
/// <summary>Asynchronously log a debug message to the console.</summary>
/// <param name="message">The message to log.</param>
public static void Debug(object message)