No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LogLevel.cs 720B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // <auto-generated/>
  2. // ReSharper disable CheckNamespace
  3. namespace RSTP_DSLink.Logging
  4. {
  5. /// <summary>
  6. /// The log level.
  7. /// </summary>
  8. #if LIBLOG_PROVIDERS_ONLY
  9. internal
  10. #else
  11. public
  12. #endif
  13. enum LogLevel
  14. {
  15. /// <summary>
  16. /// Trace
  17. /// </summary>
  18. Trace,
  19. /// <summary>
  20. /// Debug
  21. /// </summary>
  22. Debug,
  23. /// <summary>
  24. /// Info
  25. /// </summary>
  26. Info,
  27. /// <summary>
  28. /// Warn
  29. /// </summary>
  30. Warn,
  31. /// <summary>
  32. /// Error
  33. /// </summary>
  34. Error,
  35. /// <summary>
  36. /// Fatal
  37. /// </summary>
  38. Fatal
  39. }
  40. }