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

LLamaLogLevel.cs 807 B

12345678910111213141516171819202122232425262728
  1. namespace LLama.Native
  2. {
  3. /// <summary>
  4. /// Severity level of a log message
  5. /// </summary>
  6. public enum LLamaLogLevel
  7. {
  8. /// <summary>
  9. /// Logs that are used for interactive investigation during development.
  10. /// </summary>
  11. Debug = 1,
  12. /// <summary>
  13. /// Logs that highlight when the current flow of execution is stopped due to a failure.
  14. /// </summary>
  15. Error = 2,
  16. /// <summary>
  17. /// Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop.
  18. /// </summary>
  19. Warning = 3,
  20. /// <summary>
  21. /// Logs that track the general flow of the application.
  22. /// </summary>
  23. Info = 4
  24. }
  25. }