summaryrefslogtreecommitdiff
path: root/ext/ffi/callback.rs
diff options
context:
space:
mode:
authorIan Bull <irbull@gmail.com>2024-09-04 00:23:19 -0700
committerGitHub <noreply@github.com>2024-09-04 09:23:19 +0200
commitcb454351d497a4387775f3c9d64114cb8b32c08d (patch)
tree252e1dc84de3d3048ae3d98f4713cbdb436c5226 /ext/ffi/callback.rs
parent1ec911f1734b5e7190cc65876c5f03011e592d7e (diff)
refactor(ext): align error messages (#25310)
Diffstat (limited to 'ext/ffi/callback.rs')
-rw-r--r--ext/ffi/callback.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ffi/callback.rs b/ext/ffi/callback.rs
index 39321aa84..281208322 100644
--- a/ext/ffi/callback.rs
+++ b/ext/ffi/callback.rs
@@ -174,7 +174,7 @@ unsafe extern "C" fn deno_ffi_callback(
let tc_scope = &mut TryCatch::new(scope);
args.run(tc_scope);
if tc_scope.exception().is_some() {
- log::error!("Illegal unhandled exception in nonblocking callback.");
+ log::error!("Illegal unhandled exception in nonblocking callback");
}
});
}