We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58bbeec commit 6394687Copy full SHA for 6394687
src/commands/stop.ts
@@ -59,7 +59,12 @@ export default class Stop<T extends typeof Stop> extends BaseCommand<T> {
59
let pids = processList.map(x => x.pid);
60
61
if (pids.length) {
62
- this.log('got master pid %j', pids);
+ this.log('got master pid %j, list:', pids);
63
+ this.log('');
64
+ for (const item of processList) {
65
+ this.log('- %s: %o', item.pid, item.cmd);
66
+ }
67
68
this.killProcesses(pids);
69
// wait for 5s to confirm whether any worker process did not kill by master
70
await scheduler.wait(flags.timeout);
0 commit comments