summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Deprecations/DeprecationLevel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/Deprecations/DeprecationLevel.cs')
-rw-r--r--src/SMAPI/Framework/Deprecations/DeprecationLevel.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/Deprecations/DeprecationLevel.cs b/src/SMAPI/Framework/Deprecations/DeprecationLevel.cs
new file mode 100644
index 00000000..8b15b59a
--- /dev/null
+++ b/src/SMAPI/Framework/Deprecations/DeprecationLevel.cs
@@ -0,0 +1,15 @@
+namespace StardewModdingAPI.Framework.Deprecations
+{
+ /// <summary>Indicates how deprecated something is.</summary>
+ internal enum DeprecationLevel
+ {
+ /// <summary>It's deprecated but won't be removed soon. Mod authors have some time to update their mods. Deprecation warnings should be logged, but not written to the console.</summary>
+ Notice,
+
+ /// <summary>Mods should no longer be using it. Deprecation messages should be debug entries in the console.</summary>
+ Info,
+
+ /// <summary>The code will be removed soon. Deprecation messages should be warnings in the console.</summary>
+ PendingRemoval
+ }
+}