-
Pino allows you to customize the log levels, like:
```ts
const additionalLevels = {
notice: 35, // Between info and warn
critical: 55, // Between error and fatal
};
const pinoLogger = pi…
-
Steps to reproduce:
1. build api `npm run build -w apps/api`
2. run it `node apps/api/dist/server.js`
EXP: api boots up on defined port
ACT: an error thrown `Error: unable to determine transport…
-
After cloning the repo and running the setup commands, I am getting these missing modules errors when compiling the example. Any thoughts?
```
GET / 200 in 18838ms
⚠ ./node_modules/@metamask/s…
-
setting `colorizeObjects: true` seems to have no effect on output
using code from the [basic example](https://github.com/pinojs/pino/blob/25ba61f40ea5a1a753c85002812426d765da52a4/examples/basic.js)…
-
-
Hi, I encountered an error in Cloudflare Workers.
After looking into it, I found that it was caused by pino.symbols always being undefined.
```
import pino from "pino"
export default {
asyn…
-
### Discussed in https://github.com/denoland/deno/discussions/26150
Originally posted by **cvermeer579** October 11, 2024
I raised the problem with Pino, but they replied: "Thank you for the …
-
Hi,
I'm trying to use pino (browser) with Cloudflare Workers.
This is my config do far:
```
import pino from 'pino';
const logger = pino({
base: {
requestId: c.var.requestId…
-
Targets by default, as in the docs, are strings like `"pino/file"` or `"pino-pretty"`. This implicitly requires any package using these transports to have this NPM package installed in the correct way…
-
When the NodeJS process runs with `--frozen-intrinsics`, creating a pino logger throws an error.
```
> node --env-file ./.env --enable-source-maps --disable-proto=throw --disallow-code-generation-…