mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-24 11:20:24 +08:00
23 lines
655 B
JavaScript
23 lines
655 B
JavaScript
|
// Copyright (c) Microsoft Corporation.
|
||
|
// Licensed under the MIT license.
|
||
|
export function log(...args) {
|
||
|
if (args.length > 0) {
|
||
|
const firstArg = String(args[0]);
|
||
|
if (firstArg.includes(":error")) {
|
||
|
console.error(...args);
|
||
|
}
|
||
|
else if (firstArg.includes(":warning")) {
|
||
|
console.warn(...args);
|
||
|
}
|
||
|
else if (firstArg.includes(":info")) {
|
||
|
console.info(...args);
|
||
|
}
|
||
|
else if (firstArg.includes(":verbose")) {
|
||
|
console.debug(...args);
|
||
|
}
|
||
|
else {
|
||
|
console.debug(...args);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
//# sourceMappingURL=log.browser.js.map
|