LogVerbosityLevel.cs 774 B

1234567891011121314151617181920212223242526272829
  1. namespace UnityEditor.TestTools.CodeCoverage
  2. {
  3. /// <summary>
  4. /// The verbosity level used in editor and console logs.
  5. /// </summary>
  6. public enum LogVerbosityLevel
  7. {
  8. /// <summary>
  9. /// All logs will be printed in Verbose
  10. /// </summary>
  11. Verbose = 0,
  12. /// <summary>
  13. /// Logs, Warnings and Errors will be printed in Info
  14. /// </summary>
  15. Info = 1,
  16. /// <summary>
  17. /// Warnings and Errors will be printed in Warning
  18. /// </summary>
  19. Warning = 2,
  20. /// <summary>
  21. /// Only Errors will be printed in Error
  22. /// </summary>
  23. Error = 3,
  24. /// <summary>
  25. /// No logs will be printed in Off
  26. /// </summary>
  27. Off = 4
  28. }
  29. }