httpPipelineLogLevel.d.ts 436 B

12345678910111213141516171819202122
  1. /**
  2. * The different levels of logs that can be used with the HttpPipelineLogger.
  3. */
  4. export declare enum HttpPipelineLogLevel {
  5. /**
  6. * A log level that indicates that no logs will be logged.
  7. */
  8. OFF = 0,
  9. /**
  10. * An error log.
  11. */
  12. ERROR = 1,
  13. /**
  14. * A warning log.
  15. */
  16. WARNING = 2,
  17. /**
  18. * An information log.
  19. */
  20. INFO = 3
  21. }
  22. //# sourceMappingURL=httpPipelineLogLevel.d.ts.map