httpPipelineLogLevel.ts 490 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License. See License.txt in the project root for license information.
  3. /**
  4. * The different levels of logs that can be used with the HttpPipelineLogger.
  5. */
  6. export enum HttpPipelineLogLevel {
  7. /**
  8. * A log level that indicates that no logs will be logged.
  9. */
  10. OFF,
  11. /**
  12. * An error log.
  13. */
  14. ERROR,
  15. /**
  16. * A warning log.
  17. */
  18. WARNING,
  19. /**
  20. * An information log.
  21. */
  22. INFO
  23. }