Skip to content

Commit a05c818

Browse files
committed
Changed changelog
1 parent 380f514 commit a05c818

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44

55
### Django update (ongoing)
66

7-
* Support Django 4.0
8-
* include other Django enhancements brought up by the community
9-
10-
By: @BeryJu (#1526)
7+
- Instrument Django Signals so they show up in "Performance" view (#1526) by @BeryJu
8+
- include other Django enhancements brought up by the community
119

1210
### Various fixes & improvements
1311

sentry_sdk/client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@ def _prepare_event(
177177
and "threads" not in event
178178
):
179179
with capture_internal_exceptions():
180+
import ipdb
181+
182+
ipdb.set_trace()
180183
event["threads"] = {
181184
"values": [
182185
{

sentry_sdk/integrations/logging.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,9 @@ def _emit(self, record):
215215
event = {}
216216
hint = {}
217217
with capture_internal_exceptions():
218+
import ipdb
219+
220+
ipdb.set_trace()
218221
event["threads"] = {
219222
"values": [
220223
{

sentry_sdk/utils.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,10 @@ def current_stacktrace(with_locals=True):
514514
__tracebackhide__ = True
515515
frames = []
516516

517+
import ipdb
518+
519+
ipdb.set_trace()
520+
517521
f = sys._getframe() # type: Optional[FrameType]
518522
while f is not None:
519523
if not should_hide_frame(f):

0 commit comments

Comments
 (0)