UNPKG

895 BJavaScriptView Raw
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 */
6export 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
\No newline at end of file