From fb50df8b99f30e6c1f671ab8f82571acab141ac0 Mon Sep 17 00:00:00 2001 From: Simon Freytag Date: Thu, 16 Oct 2025 12:02:26 +0100 Subject: [PATCH] docs(logger): Add 'fatal' log level to options table 'fatal' is in the text description above but not in the table. --- content/techniques/logger.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/techniques/logger.md b/content/techniques/logger.md index 5e1752ecf1..ee5ff296c3 100644 --- a/content/techniques/logger.md +++ b/content/techniques/logger.md @@ -60,7 +60,7 @@ Here are all the available options listed in the table below: | Option | Description | Default | | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | -| `logLevels` | Enabled log levels. | `['log', 'error', 'warn', 'debug', 'verbose']` | +| `logLevels` | Enabled log levels. | `['log', 'fatal', 'error', 'warn', 'debug', 'verbose']` | | `timestamp` | If enabled, will print timestamp (time difference) between current and previous log message. Note: This option is not used when `json` is enabled. | `false` | | `prefix` | A prefix to be used for each log message. Note: This option is not used when `json` is enabled. | `Nest` | | `json` | If enabled, will print the log message in JSON format. | `false` |