diff options
Diffstat (limited to 'cli/tools/repl/mod.rs')
-rw-r--r-- | cli/tools/repl/mod.rs | 1 |
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(); |