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/Framework | |
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/Framework')
-rw-r--r-- | src/StardewModdingAPI/Framework/DeprecationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Framework/DeprecationManager.cs b/src/StardewModdingAPI/Framework/DeprecationManager.cs index 8c32ba6a..e44cd369 100644 --- a/src/StardewModdingAPI/Framework/DeprecationManager.cs +++ b/src/StardewModdingAPI/Framework/DeprecationManager.cs @@ -70,7 +70,7 @@ namespace StardewModdingAPI.Framework break; case DeprecationLevel.Info: - this.Monitor.Log(message, LogLevel.Info); + this.Monitor.Log(message, LogLevel.Warn); break; case DeprecationLevel.PendingRemoval: |