aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/createLoggerMiddleware.js
blob: 996c3477c6ac82f861a7d6dbca640752629b12ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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()
    })
  }
}
ctron6/files/elliptic-6.5.3&id=4a344e94972b109670f45f04efe4002b50981676'>Bump PORTREVISION for ports depending on the canonical version of GCCgerald2019-07-271-1/+1 * multimedia/phonon, multimedia/phonon-gestreamer, multimedia/phonon-designerpl...tcberner2019-03-171-1/+1 * Fix Qt5 symbol version scripts to put the catch-all clause first. Whentijl2019-01-161-0/+1 * Update devel/kvirc to latest releaseadridg2019-01-033-23/+13 * More GCC-related fixes in kde@ portstcberner2018-12-311-2/+2 * irc/kvirc: update to 5.0.0-beta1tcberner2018-12-236-2305/+2216