From 58787b1144863170ef09e2d26a8fa35fcd419f9e Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Wed, 12 Oct 2022 05:11:36 +0900 Subject: [PATCH] Fix: typo of logger doc. --- docs/core/logger.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/logger.md b/docs/core/logger.md index 4b16a1eeb71..f98962a0f5f 100644 --- a/docs/core/logger.md +++ b/docs/core/logger.md @@ -619,7 +619,7 @@ By default all registered loggers will be modified. You can change this behavior ### How can I add standard library logging attributes to a log record? -The Python standard library log records contains a [large set of atttributes](https://docs.python.org/3/library/logging.html#logrecord-attributes){target="_blank"}, however only a few are included in Powertools Logger log record by default. +The Python standard library log records contains a [large set of attributes](https://docs.python.org/3/library/logging.html#logrecord-attributes){target="_blank"}, however only a few are included in Powertools Logger log record by default. You can include any of these logging attributes as key value arguments (`kwargs`) when instantiating `Logger` or `LambdaPowertoolsFormatter`.