增加定时任务服务启动失败日志

This commit is contained in:
whyour
2023-05-25 21:45:28 +08:00
parent 91d080472f
commit ffba7ee4a1
3 changed files with 12 additions and 3 deletions
+5 -2
View File
@@ -17,10 +17,13 @@ const check = async (
if (res.includes('200')) {
return callback(null, { status: 1 });
}
const errLog = await promiseExec(
const panelErrLog = await promiseExec(
`tail -n 300 ~/.pm2/logs/panel-error.log`,
);
return callback(new Error(errLog));
const scheduleErrLog = await promiseExec(
`tail -n 300 ~/.pm2/logs/schedule-error.log`,
);
return callback(new Error(`${scheduleErrLog}\n${panelErrLog}`));
default:
return callback(null, { status: 1 });
+4 -1
View File
@@ -13,7 +13,10 @@ server.addService(CronService, { addCron, delCron });
server.bindAsync(
`localhost:${config.cronPort}`,
ServerCredentials.createInsecure(),
() => {
(err, port) => {
if (err) {
throw err;
}
server.start();
Logger.debug(`✌️ 定时服务启动成功!`);
process.send?.('ready');