VICE / ModuleTests / Azure / node_modules / @azure / logger / dist-esm / src / log.js
log.js
Raw
// 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