From a8dd04e8714cf8878371971f6a93a4871e51b815 Mon Sep 17 00:00:00 2001 From: Andrew Dryga Date: Mon, 13 May 2024 19:16:01 -0600 Subject: [PATCH] Fix table formatting for EncoderRedactor --- lib/logger_json/formatter/redactor_encoder.ex | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/logger_json/formatter/redactor_encoder.ex b/lib/logger_json/formatter/redactor_encoder.ex index 6f41c1a..4b08599 100644 --- a/lib/logger_json/formatter/redactor_encoder.ex +++ b/lib/logger_json/formatter/redactor_encoder.ex @@ -6,7 +6,7 @@ defmodule LoggerJSON.Formatter.RedactorEncoder do ## Encoding rules Type | Encoding | Redaction - --------------------|-----------------------------------------------------|--------------- + ------------------- | --------------------------------------------------- | -------------- `boolean()` | unchanged | unchanged `map()` | unchanged | values are redacted `list()` | unchanged | unchanged @@ -18,7 +18,6 @@ defmodule LoggerJSON.Formatter.RedactorEncoder do `keyword()` | converted to map | values are redacted `%Jason.Fragment{}` | unchanged | unchanged everything else | using `inspect/2` | unchanged - """ @type redactor :: {redactor :: module(), redactor_opts :: term()}