LogLevel.cs 396 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GreenTree.Nachtragsmanagement.Core.Domain.Logging
  7. {
  8. /// <summary>
  9. /// Represents a log level
  10. /// </summary>
  11. public enum LogLevel
  12. {
  13. Debug = 10,
  14. Information = 20,
  15. Warning = 30,
  16. Error = 40,
  17. Fatal = 50
  18. }
  19. }