From 476f5d3deb2f1f4cba5371fdc803540cca47ea11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 19 Dec 2023 02:52:43 +0100 Subject: [PATCH] fix(repl): remove stray debug log (#21635) Left behind in #21623 by mistake. --- cli/tools/repl/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs index 4b7453cb6b..29aaafd6f6 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();