From 172c6e208e49784003b12d02f70a0bcc5a345aa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Cruz?= Date: Mon, 23 Dec 2024 00:32:39 +0000 Subject: [PATCH] Sort import in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80f61d4..5336e53 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ You may also set the log level via the `LOG_LEVEL` environment variable. However Every call to `debino` creates a child logger based on a root logger. The default root logger is an instance returned by `pino()`, without any options. You may set your own root logger by calling `setRootLogger()`: ```js -import debino, { setRootLogger, pino } from '@uphold/debino'; +import debino, { pino, setRootLogger } from '@uphold/debino'; // Call this as soon as possible in your application. setRootLogger(pino({ redact: ['foo'] }));