h5pErrorLog function

void h5pErrorLog({
  1. required String message,
  2. String? TAG,
})

Implementation

void h5pErrorLog({required String message, String? TAG}) {
  if (h5pError) {
    debugPrint("LUMI H5P Error ${TAG != null ? "[$TAG]" : ""}: $message");
  }
}