diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-06 10:30:25 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-06 10:30:25 -0500 |
commit | f9aa76e41f84ff9ec70dc9bf5178f50617e45424 (patch) | |
tree | 11b94db45b62a2fa6dcd6fbc4fdcb1b8fa6caba6 /src/StardewModdingAPI/Framework/DeprecationLevel.cs | |
parent | 07d0dc38ca210a82264841fd7fe8d2040acee61d (diff) | |
download | SMAPI-f9aa76e41f84ff9ec70dc9bf5178f50617e45424.tar.gz SMAPI-f9aa76e41f84ff9ec70dc9bf5178f50617e45424.tar.bz2 SMAPI-f9aa76e41f84ff9ec70dc9bf5178f50617e45424.zip |
use more nuanced deprecation warnings (#165)
Diffstat (limited to 'src/StardewModdingAPI/Framework/DeprecationLevel.cs')
-rw-r--r-- | src/StardewModdingAPI/Framework/DeprecationLevel.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Framework/DeprecationLevel.cs b/src/StardewModdingAPI/Framework/DeprecationLevel.cs new file mode 100644 index 00000000..c0044053 --- /dev/null +++ b/src/StardewModdingAPI/Framework/DeprecationLevel.cs @@ -0,0 +1,15 @@ +namespace StardewModdingAPI.Framework +{ + /// <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 + } +}
\ No newline at end of file |