We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c8fbb9c + b126dfb commit 195866aCopy full SHA for 195866a
bufflog.ts
@@ -5,7 +5,16 @@ export class BuffLog {
5
6
constructor() {
7
this.pinoLogger = require('pino')({
8
- 'level': this.defaultLevel,
+ level: this.defaultLevel,
9
+
10
+ // probably we want to call it `msg`. if so, let's change the PHP library instead
11
+ messageKey: 'message',
12
13
+ // Define "base" fields
14
+ // soon: remove the `v` field https://github.com/pinojs/pino/issues/620
15
+ base: {
16
+ },
17
18
// notice doesn't exist in pino, let's add it
19
customLevels: {
20
notice: 35
0 commit comments