|
@@ -76,7 +76,7 @@ function init() {
|
|
app.get('/isOK', (req, res) => {
|
|
app.get('/isOK', (req, res) => {
|
|
res.send({'code': 200, 'data': true, "message": "SUCCESS"});
|
|
res.send({'code': 200, 'data': true, "message": "SUCCESS"});
|
|
});
|
|
});
|
|
- app.get('/logs', async (req, res) => {
|
|
|
|
|
|
+ app.get('/logs', (req, res) => {
|
|
// 获取发送过来的信息(请求体的数据)
|
|
// 获取发送过来的信息(请求体的数据)
|
|
const param = req.query;
|
|
const param = req.query;
|
|
const n = param.n
|
|
const n = param.n
|
|
@@ -95,7 +95,7 @@ function init() {
|
|
var logPath = "./logs" + port
|
|
var logPath = "./logs" + port
|
|
// 将相对路径转换为绝对路径
|
|
// 将相对路径转换为绝对路径
|
|
const directoryPath = path.resolve(logPath);
|
|
const directoryPath = path.resolve(logPath);
|
|
- await file.checkPathSync(directoryPath)
|
|
|
|
|
|
+ file.checkPathSync(directoryPath)
|
|
|
|
|
|
logger.info(`日志相对地址:${logPath}`)
|
|
logger.info(`日志相对地址:${logPath}`)
|
|
file.getLastFile(logPath, 10, (fileNameList) => {
|
|
file.getLastFile(logPath, 10, (fileNameList) => {
|