mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
22 lines
616 B
JavaScript
22 lines
616 B
JavaScript
const log = require('loglevel')
|
|
|
|
module.exports = createLoggerMiddleware
|
|
|
|
/**
|
|
* Returns a middleware that logs RPC activity
|
|
* @param {{ origin: string }} opts - The middleware options
|
|
* @returns {Function}
|
|
*/
|
|
function createLoggerMiddleware (opts) {
|
|
return function loggerMiddleware (/** @type {any} */ req, /** @type {any} */ res, /** @type {Function} */ next) {
|
|
next((/** @type {Function} */ cb) => {
|
|
if (res.error) {
|
|
log.error('Error in RPC response:\n', res)
|
|
}
|
|
if (req.isMetamaskInternal) return
|
|
log.info(`RPC (${opts.origin}):`, req, '->', res)
|
|
cb()
|
|
})
|
|
}
|
|
}
|