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.

36 lines
850 B

  1. 
  2. using Newtonsoft.Json.Serialization;
  3. namespace Newtonsoft.Json
  4. {
  5. /// <summary>
  6. /// Specifies what messages to output for the <see cref="ITraceWriter"/> class.
  7. /// </summary>
  8. internal enum TraceLevel
  9. {
  10. /// <summary>
  11. /// Output no tracing and debugging messages.
  12. /// </summary>
  13. Off = 0,
  14. /// <summary>
  15. /// Output error-handling messages.
  16. /// </summary>
  17. Error = 1,
  18. /// <summary>
  19. /// Output warnings and error-handling messages.
  20. /// </summary>
  21. Warning = 2,
  22. /// <summary>
  23. /// Output informational messages, warnings, and error-handling messages.
  24. /// </summary>
  25. Info = 3,
  26. /// <summary>
  27. /// Output all debugging and tracing messages.
  28. /// </summary>
  29. Verbose = 4
  30. }
  31. }