From 12953c4f8b0175c25a60a52b2810646edf6accd7 Mon Sep 17 00:00:00 2001 From: Mishaa Date: Fri, 31 May 2024 20:15:12 +0200 Subject: [PATCH] docs: replace bad link for NDJSON format --- 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