From 4cb7c3d306ec1f46b6df8b41798f089ef07dd67e Mon Sep 17 00:00:00 2001 From: Karlie Li Date: Wed, 11 Jun 2025 10:32:32 -0700 Subject: [PATCH 1/2] update readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 30ebc8e73..2bede3b31 100644 --- a/README.md +++ b/README.md @@ -645,6 +645,12 @@ This version comes with the bare minimum amount of features and functionalities Click here for a [Type Error Fixed Guideline](https://microsoft.github.io/ApplicationInsights-JS/ExtensionErrorSteps) +## Notification + +### Error Handler + +The SDK's error handler will send the complete error stack trace, NOT encrypted. This provides full visibility into errors for diagnostics and troubleshooting, but be aware that sensitive information might be included in error messages or stack traces. + ## Build a new extension for the SDK The SDK supports the ability to include multiple extensions at runtime. In order to create a new extension, please implement the following interface: From 5560ed0475087f901e79a68c9a763c227cc71291 Mon Sep 17 00:00:00 2001 From: Karlie Li Date: Tue, 17 Jun 2025 11:59:17 -0700 Subject: [PATCH 2/2] update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bede3b31..fc22ef669 100644 --- a/README.md +++ b/README.md @@ -649,7 +649,7 @@ Click here for a [Type Error Fixed Guideline](https://microsoft.github.io/Applic ### Error Handler -The SDK's error handler will send the complete error stack trace, NOT encrypted. This provides full visibility into errors for diagnostics and troubleshooting, but be aware that sensitive information might be included in error messages or stack traces. +The SDK's error handler will send the error stack trace **without encryption**. This provides full visibility into errors for diagnostics and troubleshooting, but be aware that sensitive information might be included in error messages or stack traces. ## Build a new extension for the SDK