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.
26 lines
628 B
26 lines
628 B
import log from 'loglevel';
|
|
|
|
/**
|
|
* Returns a middleware that logs RPC activity
|
|
*
|
|
* @param {{ origin: string }} opts - The middleware options
|
|
* @returns {Function}
|
|
*/
|
|
export default 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();
|
|
});
|
|
};
|
|
}
|
|
|