Skip to content

Commit 52455f1

Browse files
committed
Removed debug commands
1 parent a05c818 commit 52455f1

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

sentry_sdk/client.py

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

sentry_sdk/integrations/logging.py

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

sentry_sdk/utils.py

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

517-
import ipdb
518-
519-
ipdb.set_trace()
520-
521517
f = sys._getframe() # type: Optional[FrameType]
522518
while f is not None:
523519
if not should_hide_frame(f):

0 commit comments

Comments
 (0)