summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Config.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-02-16 13:59:13 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-02-16 13:59:13 -0500
commit16c362f4c5949b463107e88b4b49e1e49cc395d7 (patch)
tree24121155137696a896511c7fbe631d686aba3f01 /src/StardewModdingAPI/Config.cs
parentf8866ac4a81ad02f6f06391372ad1b32e6cfdb68 (diff)
downloadSMAPI-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.cs2
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
}
}