From 0b6b37a853eb4ac2793346e555ad70b33caaed45 Mon Sep 17 00:00:00 2001 From: Alexander Alderman Webb Date: Thu, 13 Nov 2025 15:41:35 +0100 Subject: [PATCH 1/4] feat(loguru): Add enable_logs=True to configure section --- docs/platforms/python/integrations/loguru/index.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/platforms/python/integrations/loguru/index.mdx b/docs/platforms/python/integrations/loguru/index.mdx index 1302a957d7d106..fa2fd64c8f706f 100644 --- a/docs/platforms/python/integrations/loguru/index.mdx +++ b/docs/platforms/python/integrations/loguru/index.mdx @@ -31,6 +31,7 @@ sentry_sdk.init( # Add data like request headers and IP for users, if applicable; # see https://docs.sentry.io/platforms/python/data-management/data-collected/ for more info send_default_pii=True, + enable_logs=True, ) ``` From c9ca3ccc20a3a434e951b0fd1fb968c80a4d323b Mon Sep 17 00:00:00 2001 From: Alexander Alderman Webb Date: Thu, 13 Nov 2025 15:43:09 +0100 Subject: [PATCH 2/4] . --- docs/platforms/python/integrations/loguru/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/python/integrations/loguru/index.mdx b/docs/platforms/python/integrations/loguru/index.mdx index fa2fd64c8f706f..506a95b1dc2e98 100644 --- a/docs/platforms/python/integrations/loguru/index.mdx +++ b/docs/platforms/python/integrations/loguru/index.mdx @@ -21,7 +21,7 @@ uv add "sentry-sdk[loguru]" ## Configure -If you have the `loguru` package in your dependencies, the Loguru integration will be enabled automatically when you initialize the Sentry SDK. +If you have the `loguru` package in your dependencies, the Loguru integration will be enabled automatically when you initialize the Sentry SDK. To send logs to Sentry, also set `enable_logs` to `True`. ```python import sentry_sdk From 4fb558020a90edbe93d367d876e0f8e6d300d0a4 Mon Sep 17 00:00:00 2001 From: Alexander Alderman Webb Date: Thu, 13 Nov 2025 15:46:43 +0100 Subject: [PATCH 3/4] . --- docs/platforms/python/integrations/loguru/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/python/integrations/loguru/index.mdx b/docs/platforms/python/integrations/loguru/index.mdx index 506a95b1dc2e98..b8c6bb523d4a25 100644 --- a/docs/platforms/python/integrations/loguru/index.mdx +++ b/docs/platforms/python/integrations/loguru/index.mdx @@ -21,7 +21,7 @@ uv add "sentry-sdk[loguru]" ## Configure -If you have the `loguru` package in your dependencies, the Loguru integration will be enabled automatically when you initialize the Sentry SDK. To send logs to Sentry, also set `enable_logs` to `True`. +If you have the `loguru` package in your dependencies, the Loguru integration will be enabled automatically when you initialize the Sentry SDK. To capture Loguru log records as [Sentry logs](/platforms/python/logs/), also set `enable_logs` to `True`. ```python import sentry_sdk From b487468068bb25cb5e256e76873dbcc51f15b15c Mon Sep 17 00:00:00 2001 From: Alexander Alderman Webb Date: Thu, 13 Nov 2025 15:47:09 +0100 Subject: [PATCH 4/4] . --- docs/platforms/python/integrations/loguru/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/python/integrations/loguru/index.mdx b/docs/platforms/python/integrations/loguru/index.mdx index b8c6bb523d4a25..441edcd976e15d 100644 --- a/docs/platforms/python/integrations/loguru/index.mdx +++ b/docs/platforms/python/integrations/loguru/index.mdx @@ -21,7 +21,7 @@ uv add "sentry-sdk[loguru]" ## Configure -If you have the `loguru` package in your dependencies, the Loguru integration will be enabled automatically when you initialize the Sentry SDK. To capture Loguru log records as [Sentry logs](/platforms/python/logs/), also set `enable_logs` to `True`. +If you have the `loguru` package in your dependencies, the Loguru integration will be enabled automatically when you initialize the Sentry SDK. To capture Loguru log records as [Sentry logs](/platforms/python/logs/), set `enable_logs` to `True`. ```python import sentry_sdk