Skip to content

Commit

Permalink
Removed debug commands
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker committed Sep 26, 2022
1 parent a05c818 commit 52455f1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions sentry_sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,6 @@ def _prepare_event(
and "threads" not in event
):
with capture_internal_exceptions():
import ipdb

ipdb.set_trace()
event["threads"] = {
"values": [
{
Expand Down
3 changes: 0 additions & 3 deletions sentry_sdk/integrations/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,6 @@ def _emit(self, record):
event = {}
hint = {}
with capture_internal_exceptions():
import ipdb

ipdb.set_trace()
event["threads"] = {
"values": [
{
Expand Down
4 changes: 0 additions & 4 deletions sentry_sdk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,10 +514,6 @@ def current_stacktrace(with_locals=True):
__tracebackhide__ = True
frames = []

import ipdb

ipdb.set_trace()

f = sys._getframe() # type: Optional[FrameType]
while f is not None:
if not should_hide_frame(f):
Expand Down

0 comments on commit 52455f1

Please sign in to comment.