custom_log method

void custom_log(
  1. int level,
  2. Pointer<Char> tag,
  3. Pointer<Char> message
)

Implementation

void custom_log(
  int level,
  ffi.Pointer<ffi.Char> tag,
  ffi.Pointer<ffi.Char> message,
) {
  return _custom_log(level, tag, message);
}