From 258da57783d26d5948a934fd944ffc2e7bd15ae6 Mon Sep 17 00:00:00 2001 From: Mathias Lafeldt Date: Mon, 6 May 2024 14:54:39 +0200 Subject: [PATCH] Remove println --- core/error.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/core/error.rs b/core/error.rs index 416cbb928..7897871e4 100644 --- a/core/error.rs +++ b/core/error.rs @@ -157,7 +157,6 @@ pub fn to_v8_error<'a>( // XXX: Prevent panic "Custom error class must have a builder registered: Uncaught null" // from taking down the whole process. Return the underlying error message instead. if js_error.exception_message == "Uncaught null" { - println!("to_v8_error: {msg}"); return message.into(); } }