diff options
Diffstat (limited to 'src/StardewModdingAPI/LogLevel.cs')
-rw-r--r-- | src/StardewModdingAPI/LogLevel.cs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/StardewModdingAPI/LogLevel.cs b/src/StardewModdingAPI/LogLevel.cs deleted file mode 100644 index 89647876..00000000 --- a/src/StardewModdingAPI/LogLevel.cs +++ /dev/null @@ -1,24 +0,0 @@ -namespace StardewModdingAPI -{ - /// <summary>The log severity levels.</summary> - public enum LogLevel - { - /// <summary>Tracing info intended for developers.</summary> - Trace, - - /// <summary>Troubleshooting info that may be relevant to the player.</summary> - Debug, - - /// <summary>Info relevant to the player. This should be used judiciously.</summary> - Info, - - /// <summary>An issue the player should be aware of. This should be used rarely.</summary> - Warn, - - /// <summary>A message indicating something went wrong.</summary> - Error, - - /// <summary>Important information to highlight for the player when player action is needed (e.g. new version available). This should be used rarely to avoid alert fatigue.</summary> - Alert - } -}
\ No newline at end of file |