2022-07-12 09:00:22 +02:00

8 lines
267 B
JavaScript

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import util from "util";
import { EOL } from "os";
export function log(message, ...args) {
process.stderr.write(`${util.format(message, ...args)}${EOL}`);
}
//# sourceMappingURL=log.js.map