pinojs/pino

Log level functionality broken when describing `transmit`

Opened this issue · 1 comments

We're using Pino in the Leather web extension project, with the config:

const pinoLogger = pino({
  enabled: !IS_TEST_ENV,
  level: 'info',
  browser: {
    asObject: false,
    transmit: {
      level: 'info',
      send(_level, logEvent) {
        if (!chrome) return;
        logs$.next(logEvent);
      },
    },
  },
});

Not sure when this was introduced, but lately, pinoLogger.debug statements have been logging to console, despite the level being info. In debugging this, I've noticed that when removing the browser.transmit object, the logging behaviour works as expected.

Please provide a minimal reproducible example. Doing so will help us diagnose your issue. It should be the bare minimum code needed to trigger the issue, and easily runnable without any changes or extra code.

You may use a GitHub repository to host the code if it is too much to fit in a code block (or two).