Permalink
Cannot retrieve contributors at this time
37 lines (37 sloc)
1.4 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@azure/ms-rest-js/es/lib/httpPipelineLogger.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) Microsoft Corporation. All rights reserved. | |
// Licensed under the MIT License. See License.txt in the project root for license information. | |
import { HttpPipelineLogLevel } from "./httpPipelineLogLevel"; | |
/** | |
* A HttpPipelineLogger that will send its logs to the console. | |
*/ | |
var ConsoleHttpPipelineLogger = /** @class */ (function () { | |
/** | |
* Create a new ConsoleHttpPipelineLogger. | |
* @param minimumLogLevel The log level threshold for what logs will be logged. | |
*/ | |
function ConsoleHttpPipelineLogger(minimumLogLevel) { | |
this.minimumLogLevel = minimumLogLevel; | |
} | |
/** | |
* Log the provided message. | |
* @param logLevel The HttpLogDetailLevel associated with this message. | |
* @param message The message to log. | |
*/ | |
ConsoleHttpPipelineLogger.prototype.log = function (logLevel, message) { | |
var logMessage = HttpPipelineLogLevel[logLevel] + ": " + message; | |
switch (logLevel) { | |
case HttpPipelineLogLevel.ERROR: | |
console.error(logMessage); | |
break; | |
case HttpPipelineLogLevel.WARNING: | |
console.warn(logMessage); | |
break; | |
case HttpPipelineLogLevel.INFO: | |
console.log(logMessage); | |
break; | |
} | |
}; | |
return ConsoleHttpPipelineLogger; | |
}()); | |
export { ConsoleHttpPipelineLogger }; | |
//# sourceMappingURL=httpPipelineLogger.js.map |