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 | /**
|
5 | * The different levels of logs that can be used with the HttpPipelineLogger.
|
6 | */
|
7 | export enum HttpPipelineLogLevel {
|
8 | /**
|
9 | * A log level that indicates that no logs will be logged.
|
10 | */
|
11 | OFF,
|
12 |
|
13 | /**
|
14 | * An error log.
|
15 | */
|
16 | ERROR,
|
17 |
|
18 | /**
|
19 | * A warning log.
|
20 | */
|
21 | WARNING,
|
22 |
|
23 | /**
|
24 | * An information log.
|
25 | */
|
26 | INFO,
|
27 | }
|