d method

void d(
  1. Object? object,
  2. {String? tag}
)

debug log

Implementation

void d(Object? object, {String? tag}) {
  if (level.index > LogLevel.debug.index) {
    return;
  }
  _print(object ?? '', 'D/' + (tag ?? ''), '34', LogLevel.debug);
}