diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-16 13:59:13 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-16 13:59:13 -0500 |
commit | 16c362f4c5949b463107e88b4b49e1e49cc395d7 (patch) | |
tree | 24121155137696a896511c7fbe631d686aba3f01 /src/StardewModdingAPI/Log.cs | |
parent | f8866ac4a81ad02f6f06391372ad1b32e6cfdb68 (diff) | |
download | SMAPI-16c362f4c5949b463107e88b4b49e1e49cc395d7.tar.gz SMAPI-16c362f4c5949b463107e88b4b49e1e49cc395d7.tar.bz2 SMAPI-16c362f4c5949b463107e88b4b49e1e49cc395d7.zip |
increase all notice deprecations to info, tweak deprecation message format
Diffstat (limited to 'src/StardewModdingAPI/Log.cs')
-rw-r--r-- | src/StardewModdingAPI/Log.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Log.cs b/src/StardewModdingAPI/Log.cs index a8d78e55..d58cebfe 100644 --- a/src/StardewModdingAPI/Log.cs +++ b/src/StardewModdingAPI/Log.cs @@ -306,7 +306,7 @@ namespace StardewModdingAPI /// <summary>Raise a deprecation warning.</summary> private static void WarnDeprecated() { - Log.DeprecationManager.Warn($"the {nameof(Log)} class", "1.1", DeprecationLevel.Notice); + Log.DeprecationManager.Warn($"the {nameof(Log)} class", "1.1", DeprecationLevel.Info); } /// <summary>Get the name of the mod logging a message from the stack.</summary> |