Remove unnecessary logging

This commit is contained in:
Rich Chiodo false 2024-05-01 16:25:05 -07:00
parent 498a0e70e4
commit 3e22f39085
2 changed files with 0 additions and 2 deletions

View file

@ -387,7 +387,6 @@ class Adapter:
# Create a callback for when the goto actually finishes. We don't
# want to send our response until then.
def goto_finished(e: Exception | None):
log.info(f"Inside goto finished handler for {line}")
if e is not None:
request.cant_handle(
f"Line {line} is not in the same code block as the current frame",

View file

@ -246,7 +246,6 @@ class Tracer:
"""
def goto_handler():
log.info(f"Inside goto handler for {thread}:{line}")
# Filter out runtime warnings that come from doing a goto
with warnings.catch_warnings():
warnings.simplefilter("ignore")