LogLevel.cs 777 B

12345678910111213141516171819202122232425
  1. namespace SingularityGroup.HotReload {
  2. /// <summary>
  3. /// The log level enumeration for the Hot Reload package
  4. /// Used in <see cref="HotReloadLogging.SetLogLevel"/> to set the log level.
  5. /// </summary>
  6. public enum LogLevel {
  7. /// Debug logs are useful for developers of Hot Reload
  8. Debug = 1,
  9. /// Info logs potentially useful for users of Hot Reload
  10. Info = 2,
  11. /// Warnings are visible to users of Hot Reload
  12. Warning = 3,
  13. /// Errors are visible to users of Hot Reload
  14. Error = 4,
  15. /// Exceptions are visible to users of Hot Reload
  16. Exception = 5,
  17. /// No logs are visible to users of Hot Reload
  18. Disabled = 6,
  19. }
  20. }