Skip to content

Commit

Permalink
Add flush function to types (#1329)
Browse files Browse the repository at this point in the history
After 5e31678 `Logger` doesn't allow arbitrary properties anymore, which
revealed that types are missing `.flush` function definition
  • Loading branch information
kblcuk authored Feb 15, 2022
1 parent 519d508 commit d48b02f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions pino.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ interface LoggerExtras<Options = LoggerOptions> extends EventEmitter {
* Returns an object containing all the current bindings, cloned from the ones passed in via logger.child().
*/
bindings(): pino.Bindings;

/**
* Flushes the content of the buffer when using pino.destination({ sync: false }).
*/
flush(): () => void;
}


Expand Down
3 changes: 2 additions & 1 deletion test/types/pino.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { pino } from '../../pino'
import { join } from 'path'
import { tmpdir } from'os'
import { tmpdir } from 'os'

const destination = join(
tmpdir(),
Expand All @@ -14,6 +14,7 @@ const transport = pino.transport({
})
const logger = pino(transport)
logger.info('test2')
logger.flush()

const transport2 = pino.transport({
target: 'pino-pretty',
Expand Down

0 comments on commit d48b02f

Please sign in to comment.