停止任务添加调试日志

This commit is contained in:
hanhh 2021-08-11 16:36:50 +08:00
parent bdc3763a6f
commit c3517ccc41

View File

@ -207,11 +207,20 @@ export default class CronService {
return; return;
} }
const pids = pid.match(/\d+/g); const pids = pid.match(/\d+/g);
const killLogs = [];
this.logger.info(`需要杀死的进程:${JSON.stringify(pids.toString())}`);
for (const id of pids) { for (const id of pids) {
const c = `kill -9 ${id}`; const c = `kill -9 ${id}`;
const { stdout, stderr } = await execAsync(c); const { stdout, stderr } = await execAsync(c);
return stderr; if (stderr) {
killLogs.push(stderr);
}
if (stdout) {
killLogs.push(stdout);
}
} }
this.logger.info(`杀死的进程结果:${JSON.stringify(killLogs)}`);
return JSON.stringify(killLogs);
} catch (e) { } catch (e) {
return JSON.stringify(e); return JSON.stringify(e);
} }