fix: change exit description (#3430)

This commit is contained in:
jack zhang 2024-01-24 17:12:00 +08:00 committed by GitHub
parent b7948d5409
commit dc61f10f78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,7 +97,7 @@ process.on('SIGINT', async () => {
if (error) {
console.error(error);
} else {
console.log('所有子进程已被杀掉,应用程序即将退出');
console.log('all subprocesses were killed, exiting main process');
}
process.exit();
});