From 10f8ab4b03efc483e07c7c433b955f3ac13666eb Mon Sep 17 00:00:00 2001 From: Grigals <42711835+grigals@users.noreply.github.com> Date: Thu, 23 Nov 2023 10:49:01 +0000 Subject: [PATCH] Update Readme.md. Fix commas. --- Readme.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 04a945c6..41a504a4 100644 --- a/Readme.md +++ b/Readme.md @@ -310,12 +310,12 @@ Additionally, `customPrettifiers` can be used to format the `time`, `hostname`, // The argument for the level-prettifier may vary depending // on if the levelKey option is used or not. // By default this will be the same numerics as the Pino default: - level: logLevel => `LEVEL: ${logLevel}` + level: logLevel => `LEVEL: ${logLevel}`, // other prettifiers can be used for the other keys if needed, for example - hostname: hostname => colorGreen(hostname) - pid: pid => colorRed(pid) - name: name => colorBlue(name) + hostname: hostname => colorGreen(hostname), + pid: pid => colorRed(pid), + name: name => colorBlue(name), caller: caller => colorCyan(caller) } }