koa-log-lite
v1.0.8
Published
simple and lightweight api request logging based on koa-logger
Maintainers
Readme
koa-log-lite
Simple and lightweight api request logging based on koa-logger
Install
npm install koa-log-lite or yarn add koa-log-lite
Usage
const Koa = require('koa');
const loglite = require('koa-logger-lite');
const app = new Koa();
app.use(loglite());Options
Additional [Object] options to pass to koa-log-lite.
ignorePath - Regex pattern to test against ctx.path
const Koa = require('koa');
const loglite = require('koa-logger-lite');
const app = new Koa();
app.use(loglite({ignorePath: /^\/(assets|static\/images)/}));
// will not log paths that has /assets* and /static/images*