You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
384 B
15 lines
384 B
// log rpc activity
|
|
module.exports = createLoggerMiddleware
|
|
|
|
function createLoggerMiddleware ({ origin }) {
|
|
return function loggerMiddleware (req, res, next, end) {
|
|
next((cb) => {
|
|
if (res.error) {
|
|
log.error('Error in RPC response:\n', res)
|
|
}
|
|
if (req.isMetamaskInternal) return
|
|
log.info(`RPC (${origin}):`, req, '->', res)
|
|
cb()
|
|
})
|
|
}
|
|
}
|
|
|