Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add pino-test to the ecosystem and help sections #1931

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/ecosystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ according to a given format string.
Pino to log requests within [restify](http://restify.com/).
+ [`rill-pino-logger`](https://github.com/pinojs/rill-pino-logger): use Pino as
the logger for the [Rill framework](https://rill.site/).
+ [`pino-test`](https://github.com/pinojs/pino-test): a set of utilities for
verifying logs generated by the Pino logger.


<a id="community"></a>
## Community
Expand Down
6 changes: 6 additions & 0 deletions docs/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* [Mapping Pino Log Levels to Google Cloud Logging (Stackdriver) Severity Levels](#stackdriver)
* [Avoid Message Conflict](#avoid-message-conflict)
* [Best performance for logging to `stdout`](#best-performance-for-stdout)
* [Testing](#testing)

<a id="rotate"></a>
## Log rotation
Expand Down Expand Up @@ -301,3 +302,8 @@ const log = require('pino')();

You should only have to configure custom transports or other settings
if you have broader logging requirements.

<a id="testing"></a>
## Testing

See [`pino-test`](https://github.com/pinojs/pino-test).
5 changes: 5 additions & 0 deletions docsify/sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@
* [Duplicate keys](/docs/help.md#dupe-keys)
* [Log levels as labels instead of numbers](/docs/help.md#level-string)
* [Pino with `debug`](/docs/help.md#debug)
* [Unicode and Windows terminal](/docs/help.md#windows)
* [Mapping Pino Log Levels to Google Cloud Logging (Stackdriver) Severity Levels](/docs/help.md#stackdriver)
* [Avoid Message Conflict](/docs/help.md#avoid-message-conflict)
* [Best performance for logging to `stdout`](/docs/help.md#best-performance-for-stdout)
* [Testing](/docs/help.md#testing)