blob: 8fc7210301f106ad08a5ad10334d13afc6c5209a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogError = void 0;
/**
* Logs when commands failed executing, e.g. due to the executable not existing in the system.
*/
class LogError {
constructor({ logger }) {
this.logger = logger;
}
handle(commands) {
commands.forEach((command) => command.error.subscribe((event) => {
this.logger.logCommandEvent(`Error occurred when executing command: ${command.command}`, command);
const errorText = String(event instanceof Error ? event.stack || event : event);
this.logger.logCommandEvent(errorText, command);
}));
return { commands };
}
}
exports.LogError = LogError;
|