From 30993b74b8a090df3169ee58c7073db1357966b3 Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Wed, 5 Feb 2025 08:47:49 +0100 Subject: [PATCH] fix(js): Remove `critical` as breadcrumb log level --- .../javascript/common/enriching-events/breadcrumbs/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/common/enriching-events/breadcrumbs/index.mdx b/docs/platforms/javascript/common/enriching-events/breadcrumbs/index.mdx index b3a0d840fa168..693c6f06ab019 100644 --- a/docs/platforms/javascript/common/enriching-events/breadcrumbs/index.mdx +++ b/docs/platforms/javascript/common/enriching-events/breadcrumbs/index.mdx @@ -27,7 +27,7 @@ Manually record a breadcrumb: The available breadcrumb keys are `type`, `category`, `message`, `level`, `timestamp` (which many SDKs will set automatically for you), and `data`, which is the place to put any additional information you'd like the breadcrumb to include. Using keys other than these six won't cause an error, but will result in the data being dropped when the event is processed by Sentry. -You can choose from the following breadcrumb log levels: `"fatal"`, `"critical"`, `"error"`, `"warning"`, `"log"`, `"info"`, and `"debug"`. +You can choose from the following breadcrumb log levels: `"fatal"`, `"error"`, `"warning"`, `"log"`, `"info"`, and `"debug"`. ## Automatic Breadcrumbs