Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/contributing/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ Unless you're using the pre-configured Cloud environment, you'll need the follow
## Cloud environment

!!! warning "A word of caution"
Before using one of the services below check out their pricing. You can find more information about each service pricing respectively on [Gitpod](https://www.gitpod.io/pricing){target="_blank" rel="nofollow"} and [GitHub Codespaces](https://docs.github.com/en/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces){target="_blank" rel="nofollow"} pages.
Before using one of the services below check out their pricing.
You can find more information about each service pricing respectively on [Gitpod](https://www.gitpod.io/pricing){target="_blank" rel="nofollow"} and [GitHub Codespaces](https://docs.github.com/en/billing/managing-billing-for-github-codespaces/about-billing-for-github-codespaces){target="_blank" rel="nofollow"} pages.

Once provisioned, each Cloud environment will come with all development dependencies and tools you'll need to contribute already installed.

Expand Down
3 changes: 2 additions & 1 deletion docs/features/logger.md
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,8 @@ The `createChild` method allows you to create a child instance of the Logger, wh

Once a child logger is created, the logger and its parent will act as separate instances of the Logger class, and as such any change to one won't be applied to the other.

The following example shows how to create multiple Loggers that share service name and persistent attributes while specifying different logging levels within a single Lambda invocation. As the result, only ERROR logs with all the inherited attributes will be displayed in CloudWatch Logs from the child logger, but all logs emitted will have the same service name and persistent attributes.
The following example shows how to create multiple Loggers that share service name and persistent attributes while specifying different logging levels within a single Lambda invocation.
As the result, only ERROR logs with all the inherited attributes will be displayed in CloudWatch Logs from the child logger, but all logs emitted will have the same service name and persistent attributes.

=== "handler.ts"

Expand Down
71 changes: 59 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@vitest/coverage-v8": "^4.0.15",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.19.1",
"markdownlint-cli2": "^0.20.0",
"middy5": "npm:@middy/core@^5.4.3",
"middy6": "npm:@middy/core@^6.0.0",
"typedoc": "^0.28.15",
Expand Down
1 change: 1 addition & 0 deletions packages/idempotency/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- markdownlint-disable-next-line MD013 -->
# Powertools for AWS Lambda (TypeScript) - Idempotency Utility <!-- omit in toc -->

Powertools for AWS Lambda (TypeScript) is a developer toolkit to implement
Expand Down
Loading