traceCallbackClose function

void traceCallbackClose(
  1. String what
)

Announces that a NativeCallable is about to be closed. what should name the callback precisely enough to act on — module plus role.

Implementation

void traceCallbackClose(String what) {
  if (!_tracing) return;
  stderr.writeln('[miniav-cb] close $what');
}