aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/log.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/bot/log.py b/bot/log.py
index 068c77189..e8ac25366 100644
--- a/bot/log.py
+++ b/bot/log.py
@@ -7,6 +7,7 @@ from pathlib import Path
import coloredlogs
import sentry_sdk
from pydis_core.utils import logging as core_logging
+from sentry_sdk.integrations.asyncio import AsyncioIntegration
from sentry_sdk.integrations.logging import LoggingIntegration
from sentry_sdk.integrations.redis import RedisIntegration
@@ -56,12 +57,9 @@ def setup_sentry() -> None:
integrations=[
sentry_logging,
RedisIntegration(),
+ AsyncioIntegration(),
],
release=f"bot@{constants.GIT_SHA}",
- traces_sample_rate=0.5,
- _experiments={
- "profiles_sample_rate": 0.5,
- },
)