httpPipelineLogLevel.js 895 B

12345678910111213141516171819202122232425
  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 var HttpPipelineLogLevel;
  7. (function (HttpPipelineLogLevel) {
  8. /**
  9. * A log level that indicates that no logs will be logged.
  10. */
  11. HttpPipelineLogLevel[HttpPipelineLogLevel["OFF"] = 0] = "OFF";
  12. /**
  13. * An error log.
  14. */
  15. HttpPipelineLogLevel[HttpPipelineLogLevel["ERROR"] = 1] = "ERROR";
  16. /**
  17. * A warning log.
  18. */
  19. HttpPipelineLogLevel[HttpPipelineLogLevel["WARNING"] = 2] = "WARNING";
  20. /**
  21. * An information log.
  22. */
  23. HttpPipelineLogLevel[HttpPipelineLogLevel["INFO"] = 3] = "INFO";
  24. })(HttpPipelineLogLevel || (HttpPipelineLogLevel = {}));
  25. //# sourceMappingURL=httpPipelineLogLevel.js.map