summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-12-19 02:52:43 +0100
committerGitHub <noreply@github.com>2023-12-18 18:52:43 -0700
commit476f5d3deb2f1f4cba5371fdc803540cca47ea11 (patch)
tree217707341daa1a228963fe420d17268b291aa5d2
parentd51fda9e145e1481b5f0c27647c4b2d189074de6 (diff)
fix(repl): remove stray debug log (#21635)
Left behind in #21623 by mistake.
-rw-r--r--cli/tools/repl/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs
index 4b7453cb6..29aaafd6f 100644
--- a/cli/tools/repl/mod.rs
+++ b/cli/tools/repl/mod.rs
@@ -72,7 +72,6 @@ async fn read_line_and_poll(
message = notifications.next() => {
if let Some(message) = message {
let notification: cdp::Notification = serde_json::from_value(message).unwrap();
- eprintln!("notification {:#?}", notification);
if notification.method == "Runtime.exceptionThrown" {
let exception_thrown: cdp::ExceptionThrown = serde_json::from_value(notification.params).unwrap();
let (message, description) = exception_thrown.exception_details.get_message_and_description();