Side note: Finally! Great addition to pino! Question: How could I check that pino was not called at all when calling `func(false, logger)`? ``` const func = (b, logger) => { if (b === true) { logger.info("b is true"); } } ```