Buckets:

imerfanrajabee's picture
download
raw
606 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogOutput = void 0;
/**
* Logs the stdout and stderr output of commands.
*/
class LogOutput {
logger;
constructor({ logger }) {
this.logger = logger;
}
handle(commands) {
commands.forEach((command) => {
command.stdout.subscribe((text) => this.logger.logCommandText(text.toString(), command));
command.stderr.subscribe((text) => this.logger.logCommandText(text.toString(), command));
});
return { commands };
}
}
exports.LogOutput = LogOutput;

Xet Storage Details

Size:
606 Bytes
·
Xet hash:
5ab6653c21c99cc13345a020f6ef64887102cb78328ea2e1884bf5c1d5db15a3

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.