mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix(repl): remove stray debug log (#21635)
Left behind in #21623 by mistake.
This commit is contained in:
parent
d51fda9e14
commit
476f5d3deb
1 changed files with 0 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue