UNPKG

@dominion-framework/dominion

Version:

Declarative Promise based Node.js framework for REST API with zero dependencies.

8 lines (5 loc) 304 B
const formatLogMessage = require("./../formatLogMessage"); module.exports = function requestInterceptorLogging(body) { console.log(formatLogMessage("<-", this.request.ip, this.request.handler.method, this.request.path, process.hrtime(this.request.__hrtime__))); return body; };