// 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