pm2中自帶的日志內(nèi)容是不能滿足日常的需求的,因此需要在項(xiàng)目中加上日志管理,這里研究了下log4的使用方法,效果挺好的,想要查看的都可以找到,記錄下簡(jiǎn)單的使用步驟
log4的配合
// config.js let path = require('path'); // 日志根目錄 let baseLogPath = path.resolve(__dirname, '../../../logs'); // 請(qǐng)求日志目錄 let reqPath = '/request'; // 請(qǐng)求日志文件名 let reqFileName = 'request'; // 請(qǐng)求日志
log4的日志封裝
這里是把log4封裝成一個(gè)中間件,在app.js中直接調(diào)用就可以了
// 先安裝log4js // log4.js const log4Config = require('./config') const log4js = require('log4js') // 調(diào)用配置文件 log4js.configure(log4Config) class CommonHandle { constructor(){} // 格式化請(qǐng)求日志 static formatReqLog(ctx, time){ let text = '------------request start------------' let method = ctx.method text += `request method: ${method} \n request url: ${ctx.originalUrl } \n` if(method = 'GET'){ text += `request data: ${JSON.stringify(ctx.query)} \n` }else{ text += `request data: ${JSON.stringify(ctx.body)} \n` } text += `ctx all: ${JSON.stringify(ctx)}` return text } // 格式化相應(yīng)日志 static formatResLog(ctx,time){ let text = '------------response start------------' text += `response result: ${JSON.stringify(ctx.response.body)} \n` text += `response all: ${JSON.stringify(ctx)} \n` text += `response time: ${time} \n` return text } // 格式化錯(cuò)誤日志 static formatErrorLog(ctx,error,time){ let text = '------------error start------------' text += this.formatResLog(ctx,time) text += `error content: ${JSON.stringify(error)}` return text } } class HandleLogger extends CommonHandle{ constructor(){ super() } // 請(qǐng)求日志 static reqLogger(ctx){ log4js.getLogger('reqLogger').info(this.formatReqLog(ctx)) } // 相應(yīng)日志 static resLogger(ctx, time){ log4js.getLogger('resLogger').info(this.formatResLog(ctx,time)) } // 錯(cuò)誤日志 static errorLogger(ctx, error, time){ log4js.getLogger('errLogger').info(this.formatErrorLog(ctx,error,time)) } } module.exports = (options) => { return async (ctx,next) => { const startTime = new Date() let period; try{ // 請(qǐng)求日志 HandleLogger.reqLogger(ctx) await next() period = new Date() - startTime // 響應(yīng)日志 HandleLogger.resLogger(ctx,period) }catch(err){ period = new Date() - startTime // 錯(cuò)誤日志 HandleLogger.errorLogger(ctx, err, period) } } }
調(diào)用封裝好的日志函數(shù)
這里直接以中間件的形式調(diào)用就可以了
// app.js const Koa = require('koa') const app = new Koa() const LogJS = require('./common/log/log4') // log4.js引入 app.use(LogJS())
最后部署上線之后就能直接在根目錄下的logs文件夾下查看對(duì)應(yīng)的日志內(nèi)容。
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com