We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef83fec commit d59f05bCopy full SHA for d59f05b
frb_rust/src/dart_fn/handler.rs
@@ -59,9 +59,12 @@ impl DartFnHandler {
59
let catch_unwind_result = panic::catch_unwind(move || {
60
if let Some(completer) = (self.completers.lock().unwrap()).remove(&call_id) {
61
if let Err(err) = completer.send(message) {
62
+ // We do not care about details of this warning
63
+ // frb-coverage:ignore-start
64
log_warn_or_println(&format!(
65
"Error in dart_fn_handle_output when sending message for call_id {call_id}: {err:?}"
66
));
67
+ // frb-coverage:ignore-end
68
}
69
70
});
0 commit comments