logD function

dynamic logD(
  1. dynamic msg, {
  2. String? tag,
})

Level: Debug

Implementation

logD(msg, {String? tag}) {
  // if (!kReleaseMode)
  if (JsLogger._logProxy != null) {
    JsLogger._logProxy!(tag, msg);
  } else {
    JsLogger.logger?.fine(_makeMsg(msg, tag));
  }
}