From 491ee600ffe9aead6a00c06d5bfe140bbd5ebba4 Mon Sep 17 00:00:00 2001 From: Mishaa <42717232+SirMishaa@users.noreply.github.com> Date: Fri, 31 May 2024 20:27:44 +0200 Subject: [PATCH] docs: replace bad link for NDJSON format (#110) --- content/docs/digging_deeper/logger.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/digging_deeper/logger.md b/content/docs/digging_deeper/logger.md index 27abb9de..6816c4d7 100644 --- a/content/docs/digging_deeper/logger.md +++ b/content/docs/digging_deeper/logger.md @@ -4,7 +4,7 @@ summary: Learn how to use the AdonisJS logger to write logs to the console, file # Logger -AdonisJS has an inbuilt logger that supports writing logs to a **file**, **standard output**, and **external logging services**. Under the hood, we use [pino](https://getpino.io/#/). Pino is one of the fastest logging libraries in the Node.js ecosystem that generates logs in the [NDJSON format](http://ndjson.org/). +AdonisJS has an inbuilt logger that supports writing logs to a **file**, **standard output**, and **external logging services**. Under the hood, we use [pino](https://getpino.io/#/). Pino is one of the fastest logging libraries in the Node.js ecosystem that generates logs in the [NDJSON format](https://github.com/ndjson/ndjson-spec). ## Usage