pino-pretty icon indicating copy to clipboard operation
pino-pretty copied to clipboard

🌲Basic prettifier for Pino log lines

Results 66 pino-pretty issues
Sort by recently updated
recently updated
newest added

Bumps [rimraf](https://github.com/isaacs/rimraf) from 3.0.2 to 5.0.7. Changelog Sourced from rimraf's changelog. 5.0 No default export, only named exports 4.4 Provide Dirent or Stats object as second argument to filter 4.3...

dependencies
javascript

```js const pino = require('pino') const logger = pino({ transport: { target: 'pino-pretty', options: { colorize: true, sync: true } } }, pino.destination({sync:true})) console.log('yyy'); logger.info('hi'); console.log('xxx'); ``` Expected: ``` yyy...

good first issue
documentation

Here is the type defenition: And here is JS code for PinoPretty.customPrettifiers(): As you can see we are lacking of injection of all arguments from type defenition

I like that our logging code does not need to care if its being pretty-printed or not, just adding `| pretty-print` to our dev scripts is good separation. I would...

I am [adding a cause to my error](https://github.com/payloadcms/payload/blob/4ed3e23b20d9eae988d0f7623e322acfa5bca999/packages/payload/src/errors/APIError.ts#L16), but the error cause is not showing. I did not find any pino-pretty option which allows me to customize it to include...