We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 378fe81 commit bb31f29Copy full SHA for bb31f29
sentry_sdk/crons/api.py
@@ -1,6 +1,7 @@
1
import uuid
2
3
import sentry_sdk
4
+from sentry_sdk.utils import logger
5
6
from typing import TYPE_CHECKING
7
@@ -54,4 +55,8 @@ def capture_checkin(
54
55
56
sentry_sdk.capture_event(check_in_event)
57
58
+ logger.debug(
59
+ f"[Crons] Captured check-in({check_in_event.get('check_in_id')}): {check_in_event.get('monitor_slug')} -> {check_in_event.get('status')}"
60
+ )
61
+
62
return check_in_event["check_in_id"]
0 commit comments