fix(repl): remove stray debug log (#21635)

Left behind in #21623 by mistake.
This commit is contained in:
Bartek Iwańczuk 2023-12-19 02:52:43 +01:00 committed by GitHub
parent d51fda9e14
commit 476f5d3deb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();