📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 05:32:04
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
node_modules
/
concurrently
/
dist
/
src
/
flow-control
📍 /home/orkouolp/web/testing.orkobd/laravel/node_modules/concurrently/dist/src/flow-control
🔄 Refresh
✏️
Editing: log-error.js
Writable
"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 { logger; 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;
💾 Save Changes
❌ Cancel