Buckets:
| ; | |
| Object.defineProperty(exports, "__esModule", { value: true }); | |
| exports.LoggerPadding = void 0; | |
| class LoggerPadding { | |
| logger; | |
| constructor({ logger }) { | |
| this.logger = logger; | |
| } | |
| handle(commands) { | |
| // Sometimes there's limited concurrency, so not all commands will spawn straight away. | |
| // Compute the prefix length now, which works for all styles but those with a PID. | |
| let length = commands.reduce((length, command) => { | |
| const content = this.logger.getPrefixContent(command); | |
| return Math.max(length, content?.value.length || 0); | |
| }, 0); | |
| this.logger.setPrefixLength(length); | |
| // The length of prefixes is somewhat stable, except for PIDs, which might change when a | |
| // process spawns (e.g. PIDs might look like 1, 10 or 100), therefore listen to command starts | |
| // and update the prefix length when this happens. | |
| const subs = commands.map((command) => command.timer.subscribe((event) => { | |
| if (!event.endDate) { | |
| const content = this.logger.getPrefixContent(command); | |
| length = Math.max(length, content?.value.length || 0); | |
| this.logger.setPrefixLength(length); | |
| } | |
| })); | |
| return { | |
| commands, | |
| onFinish() { | |
| subs.forEach((sub) => sub.unsubscribe()); | |
| }, | |
| }; | |
| } | |
| } | |
| exports.LoggerPadding = LoggerPadding; | |
Xet Storage Details
- Size:
- 1.47 kB
- Xet hash:
- 396f6b5f8cd3ea733b80221609a3a73b5935de2b20c5df8d0af2884a5a0a0d8a
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.