DebugLogLevelEnum.cs 653 B

123456789101112131415161718192021222324252627282930313233
  1. namespace Wayne.Lib.Log
  2. {
  3. /// <summary>
  4. /// Describes the level of the debug information.
  5. /// Can be used to reduce the size of the logs.
  6. /// </summary>
  7. public enum DebugLogLevel
  8. {
  9. #region Fields
  10. /// <summary>
  11. /// Not logged.
  12. /// </summary>
  13. Excluded,
  14. /// <summary>
  15. /// Normal debug information.
  16. /// </summary>
  17. Normal,
  18. /// <summary>
  19. /// Detailed debug information.
  20. /// </summary>
  21. Detailed,
  22. /// <summary>
  23. /// Maximized debug information.
  24. /// </summary>
  25. Maximized
  26. #endregion
  27. }
  28. }