修改public服务

This commit is contained in:
whyour 2022-02-25 23:06:35 +08:00
parent 9927461ea9
commit 7dd87220ab
2 changed files with 10 additions and 7 deletions

View File

@ -107,7 +107,7 @@ export function createRandomString(min: number, max: number): string {
newArr.push(arr.splice(Math.random() * arr.length, 1)[0]);
}
function getOne(arr) {
function getOne(arr: any[]) {
return arr[Math.floor(Math.random() * arr.length)];
}

View File

@ -6,12 +6,15 @@ import config from './config';
const app = express();
app.get('/api/public/panel/log', (req, res) => {
exec('pm2 logs panel --lines 500', (err, stdout, stderr) => {
if (err || stderr) {
return res.send({ code: 400, data: err || stderr });
}
return res.send({ code: 200, data: stdout });
});
exec(
'pm2 logs panel --lines 500 --nostream --timestamp',
(err, stdout, stderr) => {
if (err || stderr) {
return res.send({ code: 400, data: err || stderr });
}
return res.send({ code: 200, data: stdout });
},
);
});
app