diff --git a/back/config/util.ts b/back/config/util.ts index 174ec9ea..f3763426 100644 --- a/back/config/util.ts +++ b/back/config/util.ts @@ -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)]; } diff --git a/back/public.ts b/back/public.ts index 34b99aee..4bcc13a5 100644 --- a/back/public.ts +++ b/back/public.ts @@ -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