Aleksandr
Aleksandr
Yaeh, I can remove mentions of `v` in docs, but I'm not sure about prettifier `inputData` type clarification.
Sorry, I don't fully understand what > it should be changed by the field > used by pino-pretty means
Maybe string is passed when prettifier is used with pipe (as stated in docs - `cat app.log | pino-pretty`), and if prettifier is registered in app it will always get...
In pretty print docs ``` return function prettifier (inputData) { let logObject if (typeof inputData === 'string') { logObject = someJsonParser(inputData) } else if (isObject(inputData)) { logObject = inputData }...
@jsumners > Pino prettifier modules are extra modules that provide a CLI for parsing NDJSON log lines piped via stdin and expose an API which conforms to the Pino metadata...
Ok, so supplying simple function as prettifier is not how it's supposed to be used? > Literally the first sentence in your quote describes when a string will be passed...
I'm helping to migrate https://github.com/logux/server from bunyan to pino, so I can make a PR with my experience. However, I fear it will not be exhaustive, cause I have little...
Will be fixed by #838 I think
Maybe Vue plugin will save us as always, I will try to find what they do with `:style` attributes