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;
  }
  String t = tag == null ? 'D' : '$tag';
  _print(object, t, '34', LogLevel.debug);
}