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/Config.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/Config.cs')
-rw-r--r-- | src/StardewModdingAPI/Config.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Config.cs b/src/StardewModdingAPI/Config.cs index f253930d..9f4bfad2 100644 --- a/src/StardewModdingAPI/Config.cs +++ b/src/StardewModdingAPI/Config.cs @@ -125,7 +125,7 @@ namespace StardewModdingAPI /// <summary>Construct an instance.</summary> protected Config() { - Config.DeprecationManager.Warn("the Config class", "1.0", DeprecationLevel.Notice); + Config.DeprecationManager.Warn("the Config class", "1.0", DeprecationLevel.Info); Config.DeprecationManager.MarkWarned($"{nameof(Mod)}.{nameof(Mod.BaseConfigPath)}", "1.0"); // typically used to construct config, avoid redundant warnings } } |