d method
Logs DEBUG level message
with optional exception and stacktrace
Implementation
void d(
  String message, {
  dynamic ex,
  StackTrace? stacktrace,
  Map<String, String?>? attributes,
}) {
  _log(
    'D',
    tag,
    message,
    ex: ex,
    stacktrace: stacktrace,
    attributes: attributes,
  );
}