-
Notifications
You must be signed in to change notification settings - Fork 292
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Support for pino transports? #1049
Comments
There's a similar issue #794 that suggested |
@styfle did it work for you? I tried it before creating the issue but couldn't make it work |
It also doesn't show up in the help text at all as per the readme. I went back through the last few releases and it has never showed up in in the help text even I think in the one in which it was introduced, so it's probably more of a UI oversight in that case. |
The `-a, --asset-builds` do exists and is useful in some circumstances(#1049), but it seems that the cli help message does not contain its usage description ( while `README.md` has the description). This PR add the description of `--asset-builds` to the cli help message. --------- Co-authored-by: Steven <steven@ceriously.com>
Pino is a logger that has the concept of transports, that are started in a worker thread, so the transports (which can be other packages) are not directly import by the code, but just referenced by name. For instance:
Being
pino-pretty
another NPM package.More info: https://github.com/pinojs/pino/blob/master/docs/transports.md#transports
After compiling a project and trying to run the compiled version, Pino cannot obviously find the used transports (ie:
pino-pretty
).Any idea on how to support this or work around it?
Thanks
The text was updated successfully, but these errors were encountered: